svn commit: r951789 - /forrest/trunk/plugins/build.xml
| Newsgroups | gmane.text.xml.forrest.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: gmcdonald
Date: Sat Jun 5 23:14:27 2010
New Revision: 951789
URL: http://svn.apache.org/viewvc?rev=951789&view=rev
Log:
Going back to using a modified version of 'available file' , specifying any java file exists then the property will be true. This should stop the forrestbot failures and I believe has the desired effect we are looking for.
Modified:
forrest/trunk/plugins/build.xml
Modified: forrest/trunk/plugins/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/build.xml?rev=951789&r1=951788&r2=951789&view=diff
==============================================================================
--- forrest/trunk/plugins/build.xml (original)
+++ forrest/trunk/plugins/build.xml Sat Jun 5 23:14:27 2010
@@ -87,8 +87,7 @@
<fileset dir="${plugin.lib.dir}" includes="*.jar"/>
<fileset dir="${plugin.lib.dir}" includes="*.zip"/>
</path>
- <fileset dir="${plugin.java.dir}" id="java_present" includes="**/*.java"/>
- <pathconvert property="java_exists" refid="java_present" setonempty="false"/>
+ <available file="${plugin.java.dir}/**/*.java" property="java_exists"/>
</target>
<target name="echo-init" depends="init-build-compiler" unless="no.echo.init">
<buildnumber file="${build.dir}/build.number"/>