[weld-commits] Weld SVN: r5252 - core/trunk/tests.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Wed Dec 9 09:40:47 EST 2009


Author: pete.muir at jboss.org
Date: 2009-12-09 09:40:47 -0500 (Wed, 09 Dec 2009)
New Revision: 5252

Modified:
   core/trunk/tests/pom.xml
Log:
Always copy dependencies

Modified: core/trunk/tests/pom.xml
===================================================================
--- core/trunk/tests/pom.xml	2009-12-09 12:49:07 UTC (rev 5251)
+++ core/trunk/tests/pom.xml	2009-12-09 14:40:47 UTC (rev 5252)
@@ -1,4 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <parent>
       <artifactId>weld-core-parent</artifactId>
       <groupId>org.jboss.weld</groupId>
@@ -144,6 +145,36 @@
                <outputName>test-report</outputName>
             </configuration>
          </plugin>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-dependency-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>copy</id>
+                  <phase>process-resources</phase>
+                  <goals>
+                     <goal>copy</goal>
+                  </goals>
+                  <configuration>
+                     <stripVersion>true</stripVersion>
+                     <artifactItems>
+                        <artifactItem>
+                           <groupId>org.jboss.test-harness</groupId>
+                           <artifactId>jboss-test-harness</artifactId>
+                           <overWrite>true</overWrite>
+                           <outputDirectory>${project.build.directory}/classes/lib</outputDirectory>
+                        </artifactItem>
+                        <artifactItem>
+                           <groupId>org.glassfish.web</groupId>
+                           <artifactId>el-impl</artifactId>
+                           <overWrite>true</overWrite>
+                           <outputDirectory>${project.build.directory}/dependency/lib</outputDirectory>
+                        </artifactItem>
+                     </artifactItems>
+                  </configuration>
+               </execution>
+            </executions>
+         </plugin>
       </plugins>
    </build>
 
@@ -159,36 +190,6 @@
             <plugins>
                <plugin>
                   <groupId>org.apache.maven.plugins</groupId>
-                  <artifactId>maven-dependency-plugin</artifactId>
-                  <executions>
-                     <execution>
-                        <id>copy</id>
-                        <phase>process-resources</phase>
-                        <goals>
-                           <goal>copy</goal>
-                        </goals>
-                        <configuration>
-                           <stripVersion>true</stripVersion>
-                           <artifactItems>
-                              <artifactItem>
-                                 <groupId>org.jboss.test-harness</groupId>
-                                 <artifactId>jboss-test-harness</artifactId>
-                                 <overWrite>true</overWrite>
-                                 <outputDirectory>${project.build.directory}/classes/lib</outputDirectory>
-                              </artifactItem>
-                              <artifactItem>
-                                 <groupId>org.glassfish.web</groupId>
-                                 <artifactId>el-impl</artifactId>
-                                 <overWrite>true</overWrite>
-                                 <outputDirectory>${project.build.directory}/dependency/lib</outputDirectory>
-                              </artifactItem>
-                           </artifactItems>
-                        </configuration>
-                     </execution>
-                  </executions>
-               </plugin>
-               <plugin>
-                  <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-surefire-plugin</artifactId>
                   <configuration>
                      <suiteXmlFiles>



More information about the weld-commits mailing list