You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by de...@apache.org on 2007/01/07 01:35:56 UTC

svn commit: r493620 - /jakarta/commons/trunks-sandbox/pom.xml

Author: dennisl
Date: Sat Jan  6 16:35:55 2007
New Revision: 493620

URL: http://svn.apache.org/viewvc?view=rev&rev=493620
Log:
Add a common set of reports that all components share:
- Javadoc
- JXR (cross reference for sources)
- PMD
- Surefire (test results)
- JDepend (metrics)
- Taglist (list things left to do)

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?view=diff&rev=493620&r1=493619&r2=493620
==============================================================================
--- jakarta/commons/trunks-sandbox/pom.xml (original)
+++ jakarta/commons/trunks-sandbox/pom.xml Sat Jan  6 16:35:55 2007
@@ -22,5 +22,53 @@
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox/</developerConnection>
     <url>http://svn.apache.org/repos/asf/jakarta/commons/sandbox/</url>
   </scm>
+  <!-- These reports should be moved to commons-parent some day -->
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration> 
+          <aggregate>true</aggregate>
+        </configuration> 
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <configuration> 
+          <aggregate>true</aggregate>
+        </configuration> 
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-pmd-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jdepend-maven-plugin</artifactId>
+        <version>2.0-beta-1</version>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+        <configuration> 
+          <tags>
+            <tag>TODO</tag>
+            <tag>@todo</tag>
+            <tag>FIXME</tag>
+          </tags>
+          <aggregate>true</aggregate>
+        </configuration> 
+      </plugin>
+    </plugins>
+  </reporting>
 </project>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org