You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2011/08/02 08:27:25 UTC

svn commit: r1153041 - in /pig/branches/branch-0.9: CHANGES.txt contrib/penny/java/build.xml

Author: daijy
Date: Tue Aug  2 06:27:24 2011
New Revision: 1153041

URL: http://svn.apache.org/viewvc?rev=1153041&view=rev
Log:
PIG-2199: Penny throws Exception when netty classes are missing

Modified:
    pig/branches/branch-0.9/CHANGES.txt
    pig/branches/branch-0.9/contrib/penny/java/build.xml

Modified: pig/branches/branch-0.9/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.9/CHANGES.txt?rev=1153041&r1=1153040&r2=1153041&view=diff
==============================================================================
--- pig/branches/branch-0.9/CHANGES.txt (original)
+++ pig/branches/branch-0.9/CHANGES.txt Tue Aug  2 06:27:24 2011
@@ -192,6 +192,8 @@ PIG-1696: Performance: Use System.arrayc
 
 BUG FIXES
 
+PIG-2199: Penny throws Exception when netty classes are missing (ddaniels888 via daijy)
+
 PIG-2013: Penny gets a null pointer when no properties are set (breed via daijy)
 
 PIG-2146: POStore.getSchema() returns null because of which PigOutputCommitter

Modified: pig/branches/branch-0.9/contrib/penny/java/build.xml
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.9/contrib/penny/java/build.xml?rev=1153041&r1=1153040&r2=1153041&view=diff
==============================================================================
--- pig/branches/branch-0.9/contrib/penny/java/build.xml (original)
+++ pig/branches/branch-0.9/contrib/penny/java/build.xml Tue Aug  2 06:27:24 2011
@@ -95,6 +95,7 @@
         <echo> *** Creating penny.jar ***</echo>
       <jar destfile="${pennyjar}">
         <fileset dir="build/classes"/>
+        <zipfileset src="${netty.jar}" />
       </jar>
     </target>
     <target depends="compile" name="compile-test">