Author: mahadev Date: Fri Mar 19 17:27:11 2010 New Revision: 925344 URL: http://svn.apache.org/viewvc?rev=925344&view=rev Log: ZOOKEEPER-718. the fatjar is missing libraries (ben via mahadev)
Modified: hadoop/zookeeper/trunk/CHANGES.txt hadoop/zookeeper/trunk/src/contrib/fatjar/build.xml Modified: hadoop/zookeeper/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/zookeeper/trunk/CHANGES.txt?rev=925344&r1=925343&r2=925344&view=diff ============================================================================== --- hadoop/zookeeper/trunk/CHANGES.txt (original) +++ hadoop/zookeeper/trunk/CHANGES.txt Fri Mar 19 17:27:11 2010 @@ -308,6 +308,8 @@ BUGFIXES: ZOOKEEPER-710. permanent ZSESSIONMOVED error after client app reconnects to zookeeper cluster (phunt via breed) + ZOOKEEPER-718. the fatjar is missing libraries (ben via mahadev) + IMPROVEMENTS: ZOOKEEPER-473. cleanup junit tests to eliminate false positives due to "socket reuse" and failure to close client (phunt via mahadev) Modified: hadoop/zookeeper/trunk/src/contrib/fatjar/build.xml URL: http://svn.apache.org/viewvc/hadoop/zookeeper/trunk/src/contrib/fatjar/build.xml?rev=925344&r1=925343&r2=925344&view=diff ============================================================================== --- hadoop/zookeeper/trunk/src/contrib/fatjar/build.xml (original) +++ hadoop/zookeeper/trunk/src/contrib/fatjar/build.xml Fri Mar 19 17:27:11 2010 @@ -45,6 +45,7 @@ <fileset file="${zk.root}/conf/log4j.properties" /> <fileset dir="${zk.root}/build/classes" excludes="**/.generated"/> <fileset dir="${zk.root}/build/test/classes"/> + <zipgroupfileset dir="${zk.root}/build/lib" includes="*.jar" /> <zipgroupfileset dir="${zk.root}/src/java/lib" includes="*.jar" /> </jar> </target>