[jbpm-commits] JBoss JBPM SVN: r3591 - jbpm4/trunk/modules/enterprise.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Jan 7 06:07:22 EST 2009


Author: alex.guizar at jboss.com
Date: 2009-01-07 06:07:22 -0500 (Wed, 07 Jan 2009)
New Revision: 3591

Modified:
   jbpm4/trunk/modules/enterprise/pom.xml
Log:
disable test phase, move enterprise tests to integration-test phase
http://weblogs.java.net/blog/johnsmart/archive/2008/06/unit_tests_are.html

Modified: jbpm4/trunk/modules/enterprise/pom.xml
===================================================================
--- jbpm4/trunk/modules/enterprise/pom.xml	2009-01-07 10:19:45 UTC (rev 3590)
+++ jbpm4/trunk/modules/enterprise/pom.xml	2009-01-07 11:07:22 UTC (rev 3591)
@@ -102,14 +102,12 @@
           <showDeprecation>false</showDeprecation>
         </configuration>
       </plugin>
+
       <plugin>
-        <artifactId>maven-ejb-plugin</artifactId>
-      </plugin>
-      <plugin>
         <artifactId>maven-antrun-plugin</artifactId>
         <executions>
           <execution>
-            <phase>test-compile</phase>
+            <phase>pre-integration-test</phase>
             <goals>
               <goal>run</goal>
             </goals>
@@ -124,11 +122,26 @@
           </execution>
         </executions>
       </plugin>
+
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+        <executions>
+          <execution>
+            <id>integration-tests</id>
+            <phase>integration-test</phase>
+            <goals>
+              <goal>test</goal>
+            </goals>
+            <configuration>
+              <skip>false</skip>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
 
-  <!-- Profiles -->
-  <profiles>
-  </profiles>
-  
 </project>
\ No newline at end of file




More information about the jbpm-commits mailing list