Browse Source

ZOOKEEPER-1553. Findbugs configuration is missing some dependencies (Sean Busbey via phunt)

git-svn-id: https://svn.apache.org/repos/asf/zookeeper/trunk@1420555 13f79535-47bb-0310-9956-ffa450edef68
Patrick D. Hunt 12 years ago
parent
commit
95468116d9
2 changed files with 8 additions and 1 deletions
  1. 3 0
      CHANGES.txt
  2. 5 1
      build.xml

+ 3 - 0
CHANGES.txt

@@ -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,

+ 5 - 1
build.xml

@@ -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>