[webbeans-commits] Webbeans SVN: r1421 - in tck/trunk/impl: src/main/java/org/jboss/webbeans/tck/impl and 1 other directories.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Thu Feb 5 08:37:17 EST 2009


Author: pete.muir at jboss.org
Date: 2009-02-05 08:37:17 -0500 (Thu, 05 Feb 2009)
New Revision: 1421

Removed:
   tck/trunk/impl/src/main/java/org/jboss/webbeans/tck/impl/packaging/standard/
   tck/trunk/impl/src/main/java/org/jboss/webbeans/tck/impl/report/
Modified:
   tck/trunk/impl/pom.xml
Log:
Remove coverage code to tck-utils, move tck-utils processing into a profile

Modified: tck/trunk/impl/pom.xml
===================================================================
--- tck/trunk/impl/pom.xml	2009-02-05 12:27:26 UTC (rev 1420)
+++ tck/trunk/impl/pom.xml	2009-02-05 13:37:17 UTC (rev 1421)
@@ -78,10 +78,6 @@
       </dependency>
       
       <dependency>
-         <groupId>org.hibernate</groupId>
-         <artifactId>tck-utils</artifactId>
-      </dependency>
-      <dependency>
       	<groupId>javax.persistence</groupId>
       	<artifactId>persistence-api</artifactId>
       </dependency>
@@ -113,42 +109,36 @@
                </execution>
             </executions>
          </plugin>
-         <plugin>
-            <groupId>org.codehaus.mojo</groupId>
-            <artifactId>apt-maven-plugin</artifactId>
-            <executions>
-               <execution>
-                  <goals>
-                     <goal>test-process</goal>
-                  </goals>
-               </execution>
-            </executions>
-            <configuration>
-               <factory>org.jboss.webbeans.tck.impl.report.CoverageProcessorFactory</factory>
-               <testOutputDirectory>${project.build.directory}/site</testOutputDirectory>
-            </configuration>
-         </plugin>
       </plugins>
    </build>
    
   <profiles>
     <profile>
-      <id>default-tools.jar</id>
+      <id>tck-audit</id>
       <activation>
         <property>
-          <name>java.vendor</name>
-          <value>Sun Microsystems Inc.</value>
+          <name>tck-audit</name>
        </property>
      </activation>
       <dependencies>
         <dependency>
-          <groupId>com.sun</groupId>
-          <artifactId>tools</artifactId>
-          <version>1.5.0</version>
-          <scope>system</scope>
-          <systemPath>${java.home}/../lib/tools.jar</systemPath>
-       </dependency>
+        	<groupId>org.hibernate</groupId>
+           <artifactId>tck-utils</artifactId>
+        </dependency>
      </dependencies>
+     <build>
+        <plugins>
+        	<plugin>
+        		<groupId>org.apache.maven.plugins</groupId>
+        		<artifactId>maven-compiler-plugin</artifactId>
+            <configuration>
+               <compileArguments>
+                   <processor>org.hibernate.tck.report.CoverageProcessor</processor>
+               </compileArguments>
+            </configuration>
+        	</plugin>
+        </plugins>
+     </build>
    </profile>
  </profiles>   
 




More information about the weld-commits mailing list