Author: doogie
Date: Thu Mar 4 19:27:43 2010
New Revision: 919140
URL:
http://svn.apache.org/viewvc?rev=919140&view=revLog:
Don't recurse into all subfolders when trying to find javadocs and
build.xmls.
Modified:
ofbiz/trunk/build.xml
Modified: ofbiz/trunk/build.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=919140&r1=919139&r2=919140&view=diff==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Thu Mar 4 19:27:43 2010
@@ -137,7 +137,7 @@
<target name="clean">
<subant target="clean">
<fileset dir="${basedir}/hot-deploy" casesensitive="no">
- <include name="**/build.xml"/>
+ <include name="*/build.xml"/>
</fileset>
</subant>
@@ -200,7 +200,7 @@
<subant inheritall="false">
<fileset dir="${basedir}/hot-deploy" casesensitive="no">
<exclude name="disabled/**"/>
- <include name="**/build.xml"/>
+ <include name="*/build.xml"/>
</fileset>
</subant>
<antcall target="clean-svninfo"></antcall>
@@ -226,7 +226,7 @@
</subant>
<subant target="docs">
<fileset dir="${basedir}/hot-deploy" casesensitive="no">
- <include name="**/build.xml"/>
+ <include name="*/build.xml"/>
</fileset>
</subant>
@@ -284,13 +284,13 @@
<mkdir dir="${site.dir}/api/applications"/>
<mkdir dir="${site.dir}/api/specialpurpose"/>
<copy todir="${site.dir}/api/framework">
- <fileset dir="${basedir}/framework" includes="**/build/javadocs/**"/>
+ <fileset dir="${basedir}/framework" includes="*/build/javadocs/**"/>
</copy>
<copy todir="${site.dir}/api/applications">
- <fileset dir="${basedir}/applications" includes="**/build/javadocs/**"/>
+ <fileset dir="${basedir}/applications" includes="*/build/javadocs/**"/>
</copy>
<copy todir="${site.dir}/api/specialpurpose">
- <fileset dir="${basedir}/specialpurpose" includes="**/build/javadocs/**"/>
+ <fileset dir="${basedir}/specialpurpose" includes="*/build/javadocs/**"/>
</copy>
</target>