You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by de...@apache.org on 2009/02/09 20:49:45 UTC

svn commit: r742706 - /maven/doxia/doxia/branches/doxia-1.0.x/pom.xml

Author: dennisl
Date: Mon Feb  9 19:49:44 2009
New Revision: 742706

URL: http://svn.apache.org/viewvc?rev=742706&view=rev
Log:
o Copy the Javadoc Plugin configuration from reporting to build, because the Confluence Module uses assertions. We need to specify a <source> configuration during the build, otherwise javadoc:jar will fail.

Modified:
    maven/doxia/doxia/branches/doxia-1.0.x/pom.xml

Modified: maven/doxia/doxia/branches/doxia-1.0.x/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia/branches/doxia-1.0.x/pom.xml?rev=742706&r1=742705&r2=742706&view=diff
==============================================================================
--- maven/doxia/doxia/branches/doxia-1.0.x/pom.xml (original)
+++ maven/doxia/doxia/branches/doxia-1.0.x/pom.xml Mon Feb  9 19:49:44 2009
@@ -173,6 +173,26 @@
       <plugins>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <configuration>
+            <source>1.4</source>
+            <aggregate>true</aggregate>
+            <links>
+              <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+              <link>http://plexus.codehaus.org/plexus-utils/apidocs/</link>
+              <link>http://junit.sourceforge.net/javadoc/</link>
+            </links>
+            <tagletArtifacts>
+              <tagletArtifact>
+                <groupId>org.codehaus.plexus</groupId>
+                <artifactId>plexus-javadoc</artifactId>
+                <version>1.0</version>
+              </tagletArtifact>
+            </tagletArtifacts>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-release-plugin</artifactId>
           <configuration>
             <tagBase>https://svn.apache.org/repos/asf/maven/doxia/doxia/tags</tagBase>