You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jr...@apache.org on 2006/09/25 00:29:40 UTC

svn commit: r449513 - /incubator/abdera/java/trunk/pom.xml

Author: jrduncans
Date: Sun Sep 24 15:29:39 2006
New Revision: 449513

URL: http://svn.apache.org/viewvc?view=rev&rev=449513
Log:
Added reporting to the pom to be generated during site creation.

* pom.xml - Added javadoc, source cross-referencing, and test result reporting

Modified:
    incubator/abdera/java/trunk/pom.xml

Modified: incubator/abdera/java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/pom.xml?view=diff&rev=449513&r1=449512&r2=449513
==============================================================================
--- incubator/abdera/java/trunk/pom.xml (original)
+++ incubator/abdera/java/trunk/pom.xml Sun Sep 24 15:29:39 2006
@@ -77,6 +77,36 @@
     <url>http://svn.apache.org/repos/asf/incubator/abdera/java/trunk/</url>
   </scm>
   
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>				
+          <links>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+          </links>
+          <aggregate>true</aggregate>
+          <excludePackageNames>org.apache.abdera.util,org.apache.abdera.ext.*.impl,org.apache.abdera.parser.**,org.apache.abdera.security.**</excludePackageNames>
+        </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-surefire-report-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+  
   <build>
     <plugins>
       <plugin>