You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ha...@apache.org on 2011/05/05 20:42:39 UTC

svn commit: r1099913 - in /pig/trunk: .eclipse.templates/.classpath CHANGES.txt

Author: hashutosh
Date: Thu May  5 18:42:39 2011
New Revision: 1099913

URL: http://svn.apache.org/viewvc?rev=1099913&view=rev
Log:
PIG-2024: Incorrect jar paths in .classpath template for eclipse

Modified:
    pig/trunk/.eclipse.templates/.classpath
    pig/trunk/CHANGES.txt

Modified: pig/trunk/.eclipse.templates/.classpath
URL: http://svn.apache.org/viewvc/pig/trunk/.eclipse.templates/.classpath?rev=1099913&r1=1099912&r2=1099913&view=diff
==============================================================================
--- pig/trunk/.eclipse.templates/.classpath (original)
+++ pig/trunk/.eclipse.templates/.classpath Thu May  5 18:42:39 2011
@@ -15,10 +15,12 @@
 	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/joda-time-1.6.jar"/>
 	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/jsch-0.1.38.jar"/>
 	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/junit-4.5.jar"/>
-	<classpathentry exported="true" kind="lib" path="lib/antlr-3.2.jar"/>
-	<classpathentry exported="true" kind="lib" path="lib/hbase-0.20.6.jar"/>
-	<classpathentry exported="true" kind="lib" path="lib/hbase-0.20.6-test.jar"/>
-	<classpathentry exported="true" kind="lib" path="lib/zookeeper-hbase-1329.jar"/>
+	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/antlr-3.2.jar"/>
+	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/antlr-runtime-3.2.jar"/>
+	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/hbase-0.90.0.jar"/>
+	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/hbase-0.90.0-tests.jar"/>
+	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/js-1.7R2.jar"/>
+	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/zookeeper-3.3.3.jar"/>
 	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/guava-r06.jar"/>
 	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/jython-2.5.0.jar"/>
 	<classpathentry exported="true" kind="lib" path="build/ivy/lib/Pig/hadoop-core-0.20.2.jar"/>

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1099913&r1=1099912&r2=1099913&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Thu May  5 18:42:39 2011
@@ -24,6 +24,8 @@ INCOMPATIBLE CHANGES
 
 IMPROVEMENTS
 
+PIG-2024: Incorrect jar paths in .classpath template for eclipse (azaroth via hashutosh)
+
 OPTIMIZATIONS
 
 PIG-2011: Speed up TestTypedMap.java (dvryaboy)