[seam-commits] Seam SVN: r14398 - in branches/community/Seam_2_3/examples-ee6/todo: todo-tests and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Wed Mar 14 13:44:13 EDT 2012


Author: manaRH
Date: 2012-03-14 13:44:12 -0400 (Wed, 14 Mar 2012)
New Revision: 14398

Modified:
   branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml
   branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml
Log:
JBSEAM-4900 finished todo example for verification of jbpm upgrade

Modified: branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml	2012-03-14 17:44:04 UTC (rev 14397)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml	2012-03-14 17:44:12 UTC (rev 14398)
@@ -78,6 +78,11 @@
             <groupId>org.jbpm.jbpm3</groupId>
             <artifactId>jbpm-jpdl</artifactId>
         </dependency>
+        <dependency>
+        	<groupId>javax.transaction</groupId>
+        	<artifactId>jta</artifactId>
+        	<scope>provided</scope>
+        </dependency>
     </dependencies>
     
     <profiles>

Modified: branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml	2012-03-14 17:44:04 UTC (rev 14397)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml	2012-03-14 17:44:12 UTC (rev 14398)
@@ -14,6 +14,11 @@
     
     <dependencies>
         <dependency>
+            <groupId>org.testng</groupId>
+            <artifactId>testng</artifactId>
+            <classifier>jdk15</classifier>
+        </dependency>    
+        <dependency>
             <groupId>org.jboss.seam.examples-ee6.todo</groupId>
             <artifactId>todo-ejb</artifactId>
             <type>ejb</type>
@@ -25,11 +30,6 @@
             <type>ejb</type>
             <scope>test</scope>
         </dependency>        
-<!--         <dependency> -->
-<!--             <groupId>org.slf4j</groupId> -->
-<!--             <artifactId>slf4j-log4j12</artifactId> -->
-<!--             <scope>test</scope> -->
-<!--         </dependency> -->
         <dependency>
             <groupId>com.sun.faces</groupId>
             <artifactId>jsf-api</artifactId>
@@ -47,14 +47,12 @@
             <groupId>org.jboss.seam</groupId>
             <artifactId>functional-tests</artifactId>
             <scope>test</scope>
-        </dependency>
-        
+        </dependency>        
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <scope>test</scope>
-        </dependency>
-       
+        </dependency>       
         <dependency>
             <groupId>org.jboss.arquillian.junit</groupId>
             <artifactId>arquillian-junit-container</artifactId>
@@ -86,7 +84,15 @@
                  <filtering>true</filtering>
             </testResource>            
         </testResources>
-   
+          <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>    
     </build>    
 
     <profiles>



More information about the seam-commits mailing list