Author: gates
Date: Wed Apr 20 20:57:55 2011
New Revision: 1095510
URL: http://svn.apache.org/viewvc?rev=1095510&view=rev
Log:
HCATALOG-7 Fixed the dependency order so that hive builds first. Having hcat
first fetch it's libs and then hive build was messing with hive's ivy fetches.
Modified:
incubator/hcatalog/trunk/build.xml
Modified: incubator/hcatalog/trunk/build.xml
URL:
http://svn.apache.org/viewvc/incubator/hcatalog/trunk/build.xml?rev=1095510&r1=1095509&r2=1095510&view=diff
==============================================================================
--- incubator/hcatalog/trunk/build.xml (original)
+++ incubator/hcatalog/trunk/build.xml Wed Apr 20 20:57:55 2011
@@ -208,7 +208,7 @@
================================================================================
-->
<!-- Build HCatalog src files -->
- <target name="compile-src" depends="init,hive.jar">
+ <target name="compile-src" depends="hive.jar,init">
<javac encoding="${build.encoding}" srcdir="${src.dir}"
excludes="${excludes}"
includes="**/*.java" destdir="${build.classes}" debug="${javac.debug}"
optimize="${javac.optimize}" target="${javac.version}"