[Japi-cvs] SF.net SVN: japi:[1164] common/trunk/commonBuild.xml
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-02-23 23:49:12
|
Revision: 1164 http://japi.svn.sourceforge.net/japi/?rev=1164&view=rev Author: christianhujer Date: 2009-02-23 23:49:06 +0000 (Mon, 23 Feb 2009) Log Message: ----------- Improved linking, removed bogus and unused source path. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-23 23:40:48 UTC (rev 1163) +++ common/trunk/commonBuild.xml 2009-02-23 23:49:06 UTC (rev 1164) @@ -51,6 +51,9 @@ --> <property file="developer.properties" /> +<!-- If the developer did not specify a location for the package information of the java api documentation, try this one. --> +<property name="user.javadoc.link" value="${java.home}/../docs/api/" /> + <!-- The file module.properties must exist in each module that is built using common. --> <property file="module.properties" prefix="module" /> @@ -346,16 +349,12 @@ encoding = "utf-8" source = "1.5" linksource = "yes" - link = "${user.javadoc.link}" > <!-- overview = "src/overview.html" --> <classpath refid="class.path" /> - <sourcepath> - <pathelement path="${user.javadoc.javasrc}" /> - <!--pathelement path="src" /--><!-- This is handled via packageset. --> - </sourcepath> + <link offline="true" href="http://java.sun.com/javase/6/docs/api/" packagelistLoc="${java.home}/../docs/api/" /> <packageset dir="src/prj" defaultexcludes="yes" @@ -397,15 +396,12 @@ encoding = "utf-8" source = "1.5" linksource = "yes" - link = "${user.javadoc.link}" > <!-- overview = "src/overview.html" --> <classpath refid="class.path" /> - <sourcepath> - <pathelement path="${user.javadoc.javasrc}" /> - </sourcepath> + <link offline="true" href="http://java.sun.com/javase/6/docs/api/" packagelistLoc="${java.home}/../docs/api/" /> <packageset dir="src/doc" defaultexcludes="yes" /> <packageset dir="src/prj" defaultexcludes="yes" /> <packageset dir="src/tst" defaultexcludes="yes" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |