You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2010/10/16 21:05:25 UTC

svn commit: r1023356 - /commons/proper/commons-parent/trunk/pom.xml

Author: brentworden
Date: Sat Oct 16 19:05:25 2010
New Revision: 1023356

URL: http://svn.apache.org/viewvc?rev=1023356&view=rev
Log:
[COMMONSSITE-29] added a java api link POM property that is configured in the javadoc plugin.

Modified:
    commons/proper/commons-parent/trunk/pom.xml

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1023356&r1=1023355&r2=1023356&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Sat Oct 16 19:05:25 2010
@@ -183,6 +183,9 @@
             <quiet>true</quiet>
             <encoding>${commons.encoding}</encoding>
             <docEncoding>${commons.docEncoding}</docEncoding>
+            <links>
+              <link>${commons.javadoc.java.link}</link>
+            </links>
             <archive>
               <manifest>
                 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
@@ -780,6 +783,8 @@
     <project.build.sourceEncoding>${commons.encoding}</project.build.sourceEncoding>
     <project.reporting.outputEncoding>${commons.encoding}</project.reporting.outputEncoding>
 
+    <!-- Javadoc link to Java API.  Default is Java 1.6; components can override to other versions -->
+    <commons.javadoc.java.link>http://download.oracle.com/javase/6/docs/api/</commons.javadoc.java.link>
   </properties>
 
 </project>