Author: jleroux
Date: Sat Nov 12 00:12:34 2011
New Revision: 1201110
URL:
http://svn.apache.org/viewvc?rev=1201110&view=revLog:
Temporarily fix for "./ant clean-all deletes any extra installed JDBC files"
https://issues.apache.org/jira/browse/OFBIZ-4556 reported by Sam Hamilton
Comments out <!-- antcall target="clean-downloads"/ -->
I also got this on Windows XP (easily solved by hand)
BUILD FAILED
D:\workspace\ofbizDev\build.xml:78: The following error occurred while executing this line:
D:\workspace\ofbizDev\build.xml:84: Unable to delete file D:\workspace\ofbizDev\framework\base\lib\cobertura-1.9.3.jar
Comment:
<!-- FIXME: clean-downloads introduces some issues: with cobertura (on Windows can't be deleted, not sure why),
but especially with postgresql drivers -->
Modified:
ofbiz/trunk/build.xml
Modified: ofbiz/trunk/build.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=1201110&r1=1201109&r2=1201110&view=diff==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Sat Nov 12 00:12:34 2011
@@ -75,7 +75,9 @@ under the License.
<antcall target="clean-catalina"/>
<antcall target="clean-cache"/>
<antcall target="clean-tempfiles"/>
- <antcall target="clean-downloads"/>
+ <!-- FIXME: clean-downloads introduces some issues: with cobertura (on Windows can't be deleted, not sure why),
+ but especially with postgresql drivers -->
+ <!-- antcall target="clean-downloads"/ -->
<antcall target="clean"/>
</target>