[jboss-cvs] Repository SVN: r2733 - jbpm/ivy.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Mar 12 06:14:00 EDT 2008


Author: tom.baeyens at jboss.com
Date: 2008-03-12 06:14:00 -0400 (Wed, 12 Mar 2008)
New Revision: 2733

Added:
   jbpm/ivy/build.xml
Log:
moved the ivy clean cache to the repository

Added: jbpm/ivy/build.xml
===================================================================
--- jbpm/ivy/build.xml	                        (rev 0)
+++ jbpm/ivy/build.xml	2008-03-12 10:14:00 UTC (rev 2733)
@@ -0,0 +1,18 @@
+<project name="clean.ivy.cache">
+
+  <description>
+  	Each time when the ivy dependency files are updated, your local cache 
+  	becomes invalid.  At that time, you need to clean all the ivy .xml files 
+  	in the cache directory.  The jar files can be left in the cache as they
+  	will not change.
+  </description>
+	
+	<target name="clean.ivy.cache">
+	  <delete>
+	    <fileset dir="${user.home}/.ivy2/cache">
+        <exclude name="**/*.jar"/>
+      </fileset>
+	    <fileset dir="${user.home}/.ivy2/cache/jbpm" />
+	  </delete>
+	</target>
+</project>
\ No newline at end of file




More information about the jboss-cvs-commits mailing list