Author: maartenc
Date: Sun Jul  8 12:18:56 2007
New Revision: 554414

URL: http://svn.apache.org/viewvc?view=rev&rev=554414
Log:
IMPROVEMENT: Change default cache location (IVY-530)

Modified:
    incubator/ivy/core/trunk/CHANGES.txt
    
incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java

Modified: incubator/ivy/core/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/CHANGES.txt?view=diff&rev=554414&r1=554413&r2=554414
==============================================================================
--- incubator/ivy/core/trunk/CHANGES.txt (original)
+++ incubator/ivy/core/trunk/CHANGES.txt Sun Jul  8 12:18:56 2007
@@ -54,6 +54,7 @@
 - NEW: A checkstyle report is generated (IVY-483) (thanks to Jan Materne)
 - NEW: Hide private or specific conf when publishing (IVY-77)
 
+- IMPROVEMENT: Change default cache location (IVY-530)
 - IMPROVEMENT: Upgraded VFS dependency to 1.0 and removed dependency on 
VFS-sandbox (IVY-498)
 - IMPROVEMENT: Use maven2 repository to download dependencies
 - IMPROVEMENT: Allow "main" parameters to be passed directly (instead of using 
-args flag) (IVY-480) (thanks to Archie Cobbs)

Modified: 
incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java?view=diff&rev=554414&r1=554413&r2=554414
==============================================================================
--- 
incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java 
(original)
+++ 
incubator/ivy/core/trunk/src/java/org/apache/ivy/core/settings/IvySettings.java 
Sun Jul  8 12:18:56 2007
@@ -670,7 +670,7 @@
                 Message.verbose("using ivy.default.ivy.user.dir variable for 
default ivy user dir: "
                                 + defaultUserDir);
             } else {
-                setDefaultIvyUserDir(new File(System.getProperty("user.home"), 
".ivy"));
+                setDefaultIvyUserDir(new File(System.getProperty("user.home"), 
".ivy2"));
                 Message.verbose("no default ivy user dir defined: set to " + 
defaultUserDir);
             }
         }


Reply via email to