You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by mi...@apache.org on 2015/02/11 08:00:43 UTC

svn commit: r1658889 - in /zookeeper/branches/branch-3.5: CHANGES.txt src/recipes/build-recipes.xml

Author: michim
Date: Wed Feb 11 07:00:43 2015
New Revision: 1658889

URL: http://svn.apache.org/r1658889
Log:
ZOOKEEPER-1949 recipes jar not included in the distribution package (Rakesh R via michim)

Modified:
    zookeeper/branches/branch-3.5/CHANGES.txt
    zookeeper/branches/branch-3.5/src/recipes/build-recipes.xml

Modified: zookeeper/branches/branch-3.5/CHANGES.txt
URL: http://svn.apache.org/viewvc/zookeeper/branches/branch-3.5/CHANGES.txt?rev=1658889&r1=1658888&r2=1658889&view=diff
==============================================================================
--- zookeeper/branches/branch-3.5/CHANGES.txt (original)
+++ zookeeper/branches/branch-3.5/CHANGES.txt Wed Feb 11 07:00:43 2015
@@ -30,6 +30,9 @@ BUGFIXES:
   ZOOKEEPER-2074 Incorrect exit codes for "./zkCli.sh cmd arg" (surendra singh
   lilhore via michim)
 
+  ZOOKEEPER-1949 recipes jar not included in the distribution package (Rakesh R
+  via michim)
+
 IMPROVEMENTS:
   ZOOKEEPER-1660 Documentation for Dynamic Reconfiguration (Reed Wanderman-Milne via shralex)
 

Modified: zookeeper/branches/branch-3.5/src/recipes/build-recipes.xml
URL: http://svn.apache.org/viewvc/zookeeper/branches/branch-3.5/src/recipes/build-recipes.xml?rev=1658889&r1=1658888&r2=1658889&view=diff
==============================================================================
--- zookeeper/branches/branch-3.5/src/recipes/build-recipes.xml (original)
+++ zookeeper/branches/branch-3.5/src/recipes/build-recipes.xml Wed Feb 11 07:00:43 2015
@@ -111,7 +111,7 @@
   <target name="jar" depends="compile" unless="skip.recipes">
     <echo message="recipes: ${name}"/>
     <jar
-      jarfile="${build.dir}/zookeeper-${version}-${name}.jar"
+      jarfile="${build.dir}/zookeeper-${version}-recipes-${name}.jar"
       basedir="${build.classes}"      
     />
   </target>
@@ -126,7 +126,7 @@
     <copy todir="${dist.dir}${package.share}/recipes/${name}" includeEmptyDirs="false"
           flatten="true">
       <fileset dir="${build.dir}">
-        <include name="zookeeper-${version}-${name}.jar" />
+        <include name="zookeeper-${version}-recipes-${name}.jar" />
       </fileset>
     </copy>
   </target>