You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by xa...@apache.org on 2007/03/27 15:37:22 UTC

svn commit: r522957 - /incubator/ivy/core/trunk/build.xml

Author: xavier
Date: Tue Mar 27 08:37:21 2007
New Revision: 522957

URL: http://svn.apache.org/viewvc?view=rev&rev=522957
Log:
workaround for ant 1.7.0 javadoc bug on windows vista 

Modified:
    incubator/ivy/core/trunk/build.xml

Modified: incubator/ivy/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/build.xml?view=diff&rev=522957&r1=522956&r2=522957
==============================================================================
--- incubator/ivy/core/trunk/build.xml (original)
+++ incubator/ivy/core/trunk/build.xml Tue Mar 27 08:37:21 2007
@@ -334,8 +334,8 @@
 	</target>
 	
 	<target name="javadoc" unless="skip.javadoc">
-		<javadoc destdir="${javadoc.build.dir}">
-			<fileset dir="${src.dir}"/>
+		<javadoc destdir="${javadoc.build.dir}" useexternalfile="true">
+			<fileset dir="${src.dir}" includes="**/*.java,**/package.html"/>
 		</javadoc>
 	</target>