You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jv...@apache.org on 2010/08/13 22:27:03 UTC

svn commit: r985347 - in /hadoop/hive/trunk: CHANGES.txt ivy/ivysettings.xml

Author: jvs
Date: Fri Aug 13 20:27:03 2010
New Revision: 985347

URL: http://svn.apache.org/viewvc?rev=985347&view=rev
Log:
HIVE-1531. Make Hive build work with Ivy versions < 2.1.0
(Carl Steinbach via jvs)


Modified:
    hadoop/hive/trunk/CHANGES.txt
    hadoop/hive/trunk/ivy/ivysettings.xml

Modified: hadoop/hive/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/CHANGES.txt?rev=985347&r1=985346&r2=985347&view=diff
==============================================================================
--- hadoop/hive/trunk/CHANGES.txt (original)
+++ hadoop/hive/trunk/CHANGES.txt Fri Aug 13 20:27:03 2010
@@ -393,6 +393,9 @@ Release 0.6.0 -  Unreleased
     HIVE-1401. Web Interface can only browse default
     (Edward Capriolo via jvs)
 
+    HIVE-1531. Make Hive build work with Ivy versions < 2.1.0
+    (Carl Steinbach via jvs)
+
   OPTIMIZATIONS
 
     HIVE-1348. Move inputFileChanged() from ExecMapper to where it is needed

Modified: hadoop/hive/trunk/ivy/ivysettings.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ivy/ivysettings.xml?rev=985347&r1=985346&r2=985347&view=diff
==============================================================================
--- hadoop/hive/trunk/ivy/ivysettings.xml (original)
+++ hadoop/hive/trunk/ivy/ivysettings.xml Fri Aug 13 20:27:03 2010
@@ -83,6 +83,13 @@
 
   <caches default="${ivy.cache.name}">
     <cache name="online"/>
-    <cache name="offline" defaultTTL="eternal"/>
+    <!--
+         Set the defaultTTL to 1000 days. Ivy 2.1.0 allows you to
+         set this to "eternal", but we want to maintain backwards
+         compatibility with older versions of Ivy which are likely
+         to get picked up automatically from a user's $ANT_HOME
+         directory.
+      -->
+    <cache name="offline" defaultTTL="1000d"/>
   </caches>
 </ivysettings>