Author: bayard
Date: Thu Aug 10 20:40:56 2006
New Revision: 430642
URL: http://svn.apache.org/viewvc?rev=430642&view=rev
Log:
Added some global reports. I suspect checkstyle may end up being something each
component wants to customise differently - but it's nice to dream. I've set the
Sun standard as the checked style
Modified:
jakarta/commons/trunks-sandbox/pom.xml
Modified: jakarta/commons/trunks-sandbox/pom.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/trunks-sandbox/pom.xml?rev=430642&r1=430641&r2=430642&view=diff
==============================================================================
--- jakarta/commons/trunks-sandbox/pom.xml (original)
+++ jakarta/commons/trunks-sandbox/pom.xml Thu Aug 10 20:40:56 2006
@@ -81,6 +81,20 @@
<jdkLevel>1.3</jdkLevel>
</configuration>
</plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>clean</id>
+ <goals>
+ <goal>clean</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
</plugins>
</build>
@@ -94,13 +108,46 @@
<reporting>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ </plugin>
<!-- TODO: should be omitted when there are no tests to run -->
-<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
--->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <links>
+ <link>http://java.sun.com/j2se/1.4.2/docs/api</link>
+ </links>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <configuration>
+ <configurationLocation>config/sun_checks.xml</configurationLocation>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>taglist-maven-plugin</artifactId>
+ <configuration>
+ <tag>TODO</tag>
+ </configuration>
+ </plugin>
</plugins>
</reporting>
<modules>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]