Author: phunt
Date: Wed Dec 12 07:59:14 2012
New Revision: 1420555

URL: http://svn.apache.org/viewvc?rev=1420555&view=rev
Log:
ZOOKEEPER-1553. Findbugs configuration is missing some dependencies (Sean 
Busbey via phunt)

Modified:
    zookeeper/trunk/CHANGES.txt
    zookeeper/trunk/build.xml

Modified: zookeeper/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/zookeeper/trunk/CHANGES.txt?rev=1420555&r1=1420554&r2=1420555&view=diff
==============================================================================
--- zookeeper/trunk/CHANGES.txt (original)
+++ zookeeper/trunk/CHANGES.txt Wed Dec 12 07:59:14 2012
@@ -281,6 +281,9 @@ BUGFIXES:
 
   ZOOKEEPER-1581. change copyright in notice to 2012 (breed via phunt)
 
+  ZOOKEEPER-1553. Findbugs configuration is missing some dependencies
+  (Sean Busbey via phunt)
+
 IMPROVEMENTS:
 
   ZOOKEEPER-1170. Fix compiler (eclipse) warnings: unused imports,

Modified: zookeeper/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/zookeeper/trunk/build.xml?rev=1420555&r1=1420554&r2=1420555&view=diff
==============================================================================
--- zookeeper/trunk/build.xml (original)
+++ zookeeper/trunk/build.xml Wed Dec 12 07:59:14 2012
@@ -1379,7 +1379,11 @@
         <mkdir dir="${findbugs.out.dir}" />
         <findbugs home="${findbugs.home}" output="xml:withMessages" 
excludeFilter="${findbugs.exclude.file}" 
                 outputFile="${findbugs.report.xmlfile}" effort="max" 
jvmargs="-Xmx512M">
-            <auxClasspath path="${ivy.lib}/log4j-1.2.16.jar" />
+            <auxClasspath>
+                <fileset dir="${ivy.lib}">
+                    <include name="**/*.jar" />
+                </fileset>
+            </auxClasspath>
             <sourcePath path="${java.src.dir}" />
             <class location="${build.dir}/${final.name}.jar" />
         </findbugs>


Reply via email to