You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2008/10/21 14:18:23 UTC

svn commit: r706590 - /ofbiz/trunk/build.xml

Author: jleroux
Date: Tue Oct 21 05:18:23 2008
New Revision: 706590

URL: http://svn.apache.org/viewvc?rev=706590&view=rev
Log:
Fix an issue when running ant docs-all on Windows

Modified:
    ofbiz/trunk/build.xml

Modified: ofbiz/trunk/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=706590&r1=706589&r2=706590&view=diff
==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Tue Oct 21 05:18:23 2008
@@ -174,9 +174,10 @@
 
         <mkdir dir="${site.dir}/javadocs"/>
         <javadoc packagenames="org.ofbiz.*"
-                 destdir="${site.dir}/javadocs"
-             maxmemory="256M"
-                 windowtitle="Open for Business - API">
+          destdir="${site.dir}/javadocs"
+          maxmemory="256M"
+          windowtitle="Open for Business - API"
+        	useexternalfile="yes">
       <fileset dir="${basedir}" defaultexcludes="yes">
         <include name="**/*.java"/>
         <exclude name="**/ControlApplet.java"/>