You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by so...@apache.org on 2009/07/16 09:41:54 UTC

svn commit: r794569 - /myfaces/portlet-bridge/core/tags/1.0.0-beta-2/api/pom.xml

Author: sobryan
Date: Thu Jul 16 07:41:54 2009
New Revision: 794569

URL: http://svn.apache.org/viewvc?rev=794569&view=rev
Log:
Build enhancements to build javadocs

Modified:
    myfaces/portlet-bridge/core/tags/1.0.0-beta-2/api/pom.xml

Modified: myfaces/portlet-bridge/core/tags/1.0.0-beta-2/api/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/core/tags/1.0.0-beta-2/api/pom.xml?rev=794569&r1=794568&r2=794569&view=diff
==============================================================================
--- myfaces/portlet-bridge/core/tags/1.0.0-beta-2/api/pom.xml (original)
+++ myfaces/portlet-bridge/core/tags/1.0.0-beta-2/api/pom.xml Thu Jul 16 07:41:54 2009
@@ -71,10 +71,24 @@
       
       <!-- Generates the Javadocs for the Website.  Wagon will transport it -->
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.3</version>
         <configuration>
           <doctitle>MyFaces Portlet Bridge ${project.version} API</doctitle>
           <windowtitle>MyFaces Portlet Bridge ${project.version} API</windowtitle>
+          <aggregate>false</aggregate>
+          <linksource>true</linksource>
+          <breakiterator>true</breakiterator>
+          <quiet>true</quiet>
+          <verbose>false</verbose>
+          <source>${jdk.version}</source>
+          <charset>UTF-8</charset>
+          <links>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
+            <link>http://java.sun.com/javaee/javaserverfaces/1.2_MR1/docs/api</link>
+            <link>http://portals.apache.org/pluto/portlet-1.0-apidocs/</link>
+          </links>
         </configuration>
       </plugin>