You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/04/06 21:40:05 UTC

svn commit: r762519 - /incubator/kato/trunk/org.apache.kato.api/build.xml

Author: spoole
Date: Mon Apr  6 21:40:05 2009
New Revision: 762519

URL: http://svn.apache.org/viewvc?rev=762519&view=rev
Log:
updated comment in  api build script and added instructions to link javadoc to standard sun API javadoc

Modified:
    incubator/kato/trunk/org.apache.kato.api/build.xml

Modified: incubator/kato/trunk/org.apache.kato.api/build.xml
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.api/build.xml?rev=762519&r1=762518&r2=762519&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.api/build.xml (original)
+++ incubator/kato/trunk/org.apache.kato.api/build.xml Mon Apr  6 21:40:05 2009
@@ -19,9 +19,7 @@
      Configuration properties are kept in  build.properties local to this
      file.
      
-     Note that binary dependencies required by this project are assumed to
-     be held in a relative directory  ../KatoBinaryDependencies/lib 
-                                              
+     The junit dependency is fetched from the junit website                                              
      ====================================================================== -->
 <project name="project" default="default">
 
@@ -132,7 +130,9 @@
 
 	<target name="javadoc" unless="no.javadoc">
 		<mkdir dir="${javadoc.output}" />
-		<javadoc packagenames="org.apache.kato.*" verbose="false" sourcepath="${src}" defaultexcludes="yes" destdir="${javadoc.output}" author="true" version="true" use="true" failonerror="true" />
+		<javadoc packagenames="org.apache.kato.*" verbose="false" sourcepath="${src}"  defaultexcludes="yes" destdir="${javadoc.output}" author="true" version="true" use="true" failonerror="true" >
+			<link href="http://java.sun.com/j2se/1.5.0/docs/api/" />
+		</javadoc>
 	</target>