[jboss-cvs] JBossAS SVN: r70986 - projects/ejb3/trunk/core.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Mar 19 02:34:38 EDT 2008


Author: ALRubinger
Date: 2008-03-19 02:34:38 -0400 (Wed, 19 Mar 2008)
New Revision: 70986

Modified:
   projects/ejb3/trunk/core/pom.xml
Log:
[EJBTHREE-1212] Define antrun Plugin to package tests before TestRunner executes

Modified: projects/ejb3/trunk/core/pom.xml
===================================================================
--- projects/ejb3/trunk/core/pom.xml	2008-03-19 06:32:50 UTC (rev 70985)
+++ projects/ejb3/trunk/core/pom.xml	2008-03-19 06:34:38 UTC (rev 70986)
@@ -36,6 +36,29 @@
 
     <plugins>
 
+      <!-- Integration Tests via Ant -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>build-tests</id>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <phase>integration-test</phase>
+            <configuration>
+              <tasks>
+
+                <!-- Excute the Test Build -->
+                <ant antfile="build-test.xml" target="main" />
+
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      
       <!-- EJB3 TestRunner Configuration -->
       <plugin>
         <groupId>org.jboss.maven.plugins</groupId>
@@ -59,29 +82,6 @@
         </executions>
       </plugin>
 
-      <!-- Integration Tests via Ant -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-antrun-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>build-tests</id>
-            <goals>
-              <goal>run</goal>
-            </goals>
-            <phase>integration-test</phase>
-            <configuration>
-              <tasks>
-
-                <!-- Excute the Test Build -->
-                <ant antfile="build-test.xml" target="main" />
-
-              </tasks>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-
       <!-- Assembly Plugin -->
       <plugin>
         <artifactId>maven-assembly-plugin</artifactId>




More information about the jboss-cvs-commits mailing list