Javadocs now links to the JRE 1.2 Sun Javadoc (1.2 is the [lang] base requirement).

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137481 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2003-07-21 19:30:46 +00:00
parent f434e7ba71
commit 2445ba85ff
1 changed files with 2 additions and 12 deletions

View File

@ -1,7 +1,7 @@
<project name="Lang" default="compile" basedir=".">
<!--
"Lang" component of the Jakarta Commons Subproject
$Id: build.xml,v 1.14 2003/07/12 03:58:02 bayard Exp $
$Id: build.xml,v 1.15 2003/07/21 19:30:46 ggregory Exp $
-->
<!-- ========== Initialize Properties ===================================== -->
<property file="${user.home}/${component.name}.build.properties"/>
@ -62,17 +62,7 @@
<mkdir dir="${dist.home}"/>
<mkdir dir="${dist.home}/docs"/>
<mkdir dir="${dist.home}/docs/api"/>
<javadoc
sourcepath="${source.home}"
destdir="${dist.home}/docs/api"
overview="${source.home}/org/apache/commons/lang/overview.html"
packagenames="org.apache.commons.*"
author="true"
version="true"
doctitle="&lt;h1&gt;${component.title}&lt;/h1&gt;"
windowtitle="${component.title} (Version ${component.version})"
bottom="Copyright &amp;copy; 2001-2003 - Apache Software Foundation"
use="true">
<javadoc sourcepath="${source.home}" destdir="${dist.home}/docs/api" overview="${source.home}/org/apache/commons/lang/overview.html" packagenames="org.apache.commons.*" author="true" version="true" doctitle="&lt;h1&gt;${component.title}&lt;/h1&gt;" windowtitle="${component.title} (Version ${component.version})" bottom="Copyright &amp;copy; 2001-2003 - Apache Software Foundation" use="true" link="http://java.sun.com/products/jdk/1.2/docs/api/">
<classpath refid="compile.classpath"/>
</javadoc>
</target>