You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/07/08 23:30:33 UTC

svn commit: r420200 - /geronimo/sandbox/svkmerge/m2migration/pom.xml

Author: jdillon
Date: Sat Jul  8 14:30:33 2006
New Revision: 420200

URL: http://svn.apache.org/viewvc?rev=420200&view=rev
Log:
Add config for clover and checkstyle...
Pending hookup of clover-config and checkstyle-config plugins as extentions for this to work

Modified:
    geronimo/sandbox/svkmerge/m2migration/pom.xml

Modified: geronimo/sandbox/svkmerge/m2migration/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/svkmerge/m2migration/pom.xml?rev=420200&r1=420199&r2=420200&view=diff
==============================================================================
--- geronimo/sandbox/svkmerge/m2migration/pom.xml (original)
+++ geronimo/sandbox/svkmerge/m2migration/pom.xml Sat Jul  8 14:30:33 2006
@@ -920,6 +920,25 @@
             
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-clover-plugin</artifactId>
+                <configuration>
+                    <generateHtml>true</generateHtml>
+                    <jdk>1.4</jdk>
+                    <!-- Pulled as resource from clover-config plugin -->
+                    <licenseLocation>org/apache/geronimmo/clover.license</licenseLocation>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>pre-site</phase>
+                        <goals>
+                            <goal>instrument</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <configuration>
                     <source>1.4</source>
@@ -1260,24 +1279,21 @@
                 <version>2.0.1</version>
             </plugin>
             
-            <!--
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-clover-plugin</artifactId>
-                <version>2.1</version>
+                <version>2.2</version>
             </plugin>
-            -->
             
-            <!--
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-checkstyle-plugin</artifactId>
-                <version>2.0</version>
+                <version>2.1</version>
                 <configuration>
-                    <configLocation>org/apache/geronimo/build/checkstyle.xml</configLocation>
+                    <!-- Pulled as resource from checkstyle-config plugin -->
+                    <configLocation>org/apache/geronimo/checkstyle.xml</configLocation>
                 </configuration>
             </plugin>
-            -->
         </plugins>
     </reporting>