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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

doogie-3
Author: doogie
Date: Sat Feb 12 00:05:54 2011
New Revision: 1069996

URL: http://svn.apache.org/viewvc?rev=1069996&view=rev
Log:
Add a target to remove downloaded files.

Modified:
    ofbiz/trunk/build.xml

Modified: ofbiz/trunk/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=1069996&r1=1069995&r2=1069996&view=diff
==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Sat Feb 12 00:05:54 2011
@@ -67,9 +67,17 @@ under the License.
         <antcall target="clean-catalina"/>
         <antcall target="clean-cache"/>
         <antcall target="clean-tempfiles"/>
+        <antcall target="clean-downloads"/>
         <antcall target="clean"/>
     </target>
 
+    <target name="clean-downloads"
+          description="Clean all downloaded files">
+        <delete>
+            <fileset dir="framework/base/lib" includes="cobertura-*.jar"/>
+            <fileset dir="framework/entity/lib/jdbc" includes="postgresql-*.jar"/>
+        </delete>
+    </target>
     <target name="clean-data"
           description="Clean all DB data (Derby and HSQL) under runtime/data">
         <subant target="clean-data">