Browse Source

ZOOKEEPER-1913. Invalid manifest files due to bogus revision property value (Raul Gutierrez Segales via michim)

git-svn-id: https://svn.apache.org/repos/asf/zookeeper/trunk@1588584 13f79535-47bb-0310-9956-ffa450edef68
Michi Mutsuzaki 11 years ago
parent
commit
1695397637
2 changed files with 4 additions and 1 deletions
  1. 3 0
      CHANGES.txt
  2. 1 1
      build.xml

+ 3 - 0
CHANGES.txt

@@ -614,6 +614,9 @@ BUGFIXES:
   ZOOKEEPER-1909. removeWatches doesn't return NOWATCHER when there is
   no watch set (Raul Gutierrez Segales via rakeshr)
 
+  ZOOKEEPER-1913. Invalid manifest files due to bogus revision property value
+  (Raul Gutierrez Segales via michim)
+
 IMPROVEMENTS:
 
   ZOOKEEPER-1170. Fix compiler (eclipse) warnings: unused imports,

+ 1 - 1
build.xml

@@ -571,7 +571,7 @@ xmlns:maven="antlib:org.apache.maven.artifact.ant">
     <!-- ====================================================== -->
     <target name="jar" depends="compile">
         <java classname="org.apache.zookeeper.Version" fork="true"
-              outputproperty="revision" failonerror="true">
+              outputproperty="revision" errorproperty="revision.error" failonerror="true">
             <arg value="--revision" />
             <classpath>
                 <pathelement path="${build.classes}" />