You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by ma...@apache.org on 2011/10/06 15:42:47 UTC

svn commit: r1179623 - in /incubator/gora/trunk: CHANGES.txt build.xml

Author: mattmann
Date: Thu Oct  6 13:42:47 2011
New Revision: 1179623

URL: http://svn.apache.org/viewvc?rev=1179623&view=rev
Log:
Fix for GORA-45 Add dependency to 'clean-cache' ant target contributed by Lewis John McGibbney.

Modified:
    incubator/gora/trunk/CHANGES.txt
    incubator/gora/trunk/build.xml

Modified: incubator/gora/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/gora/trunk/CHANGES.txt?rev=1179623&r1=1179622&r2=1179623&view=diff
==============================================================================
--- incubator/gora/trunk/CHANGES.txt (original)
+++ incubator/gora/trunk/CHANGES.txt Thu Oct  6 13:42:47 2011
@@ -2,6 +2,8 @@ Gora Change Log
 
 Trunk (unreleased changes):
 
+* GORA-45. Add dependency to 'clean-cache' ant target (Lewis John McGibbney via mattmann)
+
 * GORA-44. Ant build fails (Lakshmi Narasimhan via mattmann)
 
 * GORA-28. Merge back recent changes in 0.1-incubating to trunk (mattmann, ab)

Modified: incubator/gora/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/gora/trunk/build.xml?rev=1179623&r1=1179622&r2=1179623&view=diff
==============================================================================
--- incubator/gora/trunk/build.xml (original)
+++ incubator/gora/trunk/build.xml Thu Oct  6 13:42:47 2011
@@ -328,7 +328,7 @@
   </target>
 
   <!-- target: clean-cache  ================================================ -->  
-  <target name="clean-cache" depends="" 
+  <target name="clean-cache" depends="ivy-init" 
   			description="delete ivy cache">
     <ivy:cleancache />
   </target>