[weld-commits] Weld SVN: r4429 - in core/trunk/inject-tck-runner: src and 1 other directories.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Thu Oct 29 18:58:59 EDT 2009


Author: pete.muir at jboss.org
Date: 2009-10-29 18:58:59 -0400 (Thu, 29 Oct 2009)
New Revision: 4429

Removed:
   core/trunk/inject-tck-runner/src/main/
   core/trunk/inject-tck-runner/src/test/resources/
Modified:
   core/trunk/inject-tck-runner/pom.xml
Log:
cleanup, WELD-235

Modified: core/trunk/inject-tck-runner/pom.xml
===================================================================
--- core/trunk/inject-tck-runner/pom.xml	2009-10-29 22:36:36 UTC (rev 4428)
+++ core/trunk/inject-tck-runner/pom.xml	2009-10-29 22:58:59 UTC (rev 4429)
@@ -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>
@@ -10,7 +11,7 @@
    <artifactId>weld-inject-tck-runner</artifactId>
    <name>AtInject TCK runner for Weld</name>
    <description>Aggregates dependencies and run's the AtInject TCK for Weld</description>
-   
+
    <dependencies>
 
       <dependency>
@@ -33,26 +34,26 @@
          <groupId>org.atinject</groupId>
          <artifactId>inject-tck</artifactId>
       </dependency>
-      
+
       <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
       </dependency>
 
       <dependency>
-          <groupId>org.slf4j</groupId>
-          <artifactId>slf4j-api</artifactId>
-          <scope>test</scope>
+         <groupId>org.slf4j</groupId>
+         <artifactId>slf4j-api</artifactId>
+         <scope>test</scope>
       </dependency>
 
       <dependency>
-          <groupId>org.slf4j</groupId>
-          <artifactId>slf4j-simple</artifactId>
-          <scope>test</scope>
+         <groupId>org.slf4j</groupId>
+         <artifactId>slf4j-simple</artifactId>
+         <scope>test</scope>
       </dependency>
-      
+
    </dependencies>
-   
+
    <build>
       <plugins>
          <plugin>
@@ -64,7 +65,18 @@
                </includes>
             </configuration>
          </plugin>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jar-plugin</artifactId>
+            <executions>
+               <execution>
+                  <goals>
+                     <goal>test-jar</goal>
+                  </goals>
+               </execution>
+            </executions>
+         </plugin>
       </plugins>
    </build>
-   
+
 </project>



More information about the weld-commits mailing list