[jboss-svn-commits] JBL Code SVN: r12931 - labs/jbossbuild/maven-plugins/trunk/maven-test-ext-plugin.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Jun 28 12:20:11 EDT 2007


Author: steve.ebersole at jboss.com
Date: 2007-06-28 12:20:11 -0400 (Thu, 28 Jun 2007)
New Revision: 12931

Modified:
   labs/jbossbuild/maven-plugins/trunk/maven-test-ext-plugin/pom.xml
Log:
added javadoc and jxr reports

Modified: labs/jbossbuild/maven-plugins/trunk/maven-test-ext-plugin/pom.xml
===================================================================
--- labs/jbossbuild/maven-plugins/trunk/maven-test-ext-plugin/pom.xml	2007-06-28 16:07:58 UTC (rev 12930)
+++ labs/jbossbuild/maven-plugins/trunk/maven-test-ext-plugin/pom.xml	2007-06-28 16:20:11 UTC (rev 12931)
@@ -1,6 +1,8 @@
 <?xml version="1.0"?>
 
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <modelVersion>4.0.0</modelVersion>
 
@@ -10,7 +12,8 @@
     <packaging>maven-plugin</packaging>
 
     <name>Test Environment Extension Plugin</name>
-    <description>Plugin for extending test environment via configuration</description>
+    <description>Plugin for extending test environment via configuration
+    </description>
 
     <dependencies>
         <dependency>
@@ -50,4 +53,24 @@
         </dependency>
     </dependencies>
 
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <minmemory>128m</minmemory>
+                    <maxmemory>512</maxmemory>
+                    <links>
+                        <link>http://java.sun.com/j2se/1.4.2/docs/api/index.html</link>
+                    </links>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jxr-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </reporting>
+
 </project>




More information about the jboss-svn-commits mailing list