[weld-commits] Weld SVN: r3925 - core/trunk/inject-tck-runner.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Sun Oct 11 09:47:46 EDT 2009


Author: pete.muir at jboss.org
Date: 2009-10-11 09:47:46 -0400 (Sun, 11 Oct 2009)
New Revision: 3925

Modified:
   core/trunk/inject-tck-runner/pom.xml
Log:
Use Junit, not TestNG to run tests

Modified: core/trunk/inject-tck-runner/pom.xml
===================================================================
--- core/trunk/inject-tck-runner/pom.xml	2009-10-10 16:18:17 UTC (rev 3924)
+++ core/trunk/inject-tck-runner/pom.xml	2009-10-11 13:47:46 UTC (rev 3925)
@@ -20,7 +20,13 @@
 
       <dependency>
          <groupId>org.jboss.weld</groupId>
-         <artifactId>weld-porting-package</artifactId>
+         <artifactId>weld-core-test</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>org.testng</groupId>
+               <artifactId>testng</artifactId>
+            </exclusion>
+         </exclusions>
       </dependency>
 
       <dependency>
@@ -31,7 +37,7 @@
       <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
-    </dependency>
+      </dependency>
       
    </dependencies>
    
@@ -41,9 +47,9 @@
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
-               <suiteXmlFiles>
-                  <suiteXmlFile>tests.xml</suiteXmlFile>
-               </suiteXmlFiles>
+               <includes>
+                  <include>**/AtInjectTCK.java</include>
+               </includes>
             </configuration>
          </plugin>
       </plugins>



More information about the weld-commits mailing list