You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by nz...@apache.org on 2010/08/23 23:51:43 UTC

svn commit: r988328 - in /hadoop/hive/trunk: CHANGES.txt build-common.xml

Author: nzhang
Date: Mon Aug 23 21:51:43 2010
New Revision: 988328

URL: http://svn.apache.org/viewvc?rev=988328&view=rev
Log:
HIVE-1441. Extend ivy offline mode to cover metastore downloads (John Sichi via Ning Zhang)

Modified:
    hadoop/hive/trunk/CHANGES.txt
    hadoop/hive/trunk/build-common.xml

Modified: hadoop/hive/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/CHANGES.txt?rev=988328&r1=988327&r2=988328&view=diff
==============================================================================
--- hadoop/hive/trunk/CHANGES.txt (original)
+++ hadoop/hive/trunk/CHANGES.txt Mon Aug 23 21:51:43 2010
@@ -99,6 +99,9 @@ Trunk -  Unreleased
     HIVE-1581. CompactIndexInputFormat should create split only for files in the index output file
     (He Yongqiang via namit)
 
+    HIVE-1441. Extend ivy offline mode to cover metastore downloads
+    (John Sichi via Ning Zhang)
+
   OPTIMIZATIONS
 
   BUG FIXES

Modified: hadoop/hive/trunk/build-common.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/build-common.xml?rev=988328&r1=988327&r2=988328&view=diff
==============================================================================
--- hadoop/hive/trunk/build-common.xml (original)
+++ hadoop/hive/trunk/build-common.xml Mon Aug 23 21:51:43 2010
@@ -148,7 +148,7 @@
     <ivy:settings id="${ant.project.name}.ivy.settings" file="${ivysettings.xml}"/>
   </target>
 
-  <target name="ivy-resolve" depends="ivy-init">
+  <target name="ivy-resolve" depends="ivy-init" unless="offline">
     <ivy:resolve settingsRef="${ant.project.name}.ivy.settings"
       log="${ivyresolvelog}"/>
   </target>
@@ -158,7 +158,7 @@
       log="${ivyresolvelog}"/>
   </target>
 
-  <target name="ivy-retrieve" depends="ivy-resolve"
+  <target name="ivy-retrieve" depends="ivy-resolve" unless="offline"
     description="Retrieve Ivy-managed artifacts">
     <ivy:retrieve settingsRef="${ant.project.name}.ivy.settings"
       pattern="${build.ivy.lib.dir}/${ivy.artifact.retrieve.pattern}"