File findbugs-build_xml.patch of Package findbugs
Index: build.xml
===================================================================
--- build.xml.orig 2010-01-27 10:44:28.473834159 +0100
+++ build.xml 2010-01-27 10:44:32.666834155 +0100
@@ -55,6 +55,7 @@
<property name="version.props.file" value="${build.dir}/classes/edu/umd/cs/findbugs/version.properties"/>
<path id="findbugs.classpath">
+<!--
<pathelement location="${jar.dir}/bcel.jar"/>
<pathelement location="${jar.dir}/dom4j-1.6.1.jar"/>
<pathelement location="${jar.dir}/AppleJavaExtensions.jar"/>
@@ -66,6 +67,10 @@
<pathelement location="${jar.dir}/jsr305.jar"/>
<pathelement location="${jar.dir}/jFormatString.jar"/>
<pathelement location="${jar.dir}/commons-lang-2.4.jar"/>
+-->
+ <fileset dir="${jar.dir}">
+ <include name="**/*.jar"/>
+ </fileset>
</path>
<path id="tools.classpath">
@@ -1047,7 +1052,7 @@
<delete dir="${annotationDoc.dir}"/>
<mkdir dir="${annotationDoc.dir}"/>
<javadoc access="public"
- classpath="lib/bcel.jar:lib/junit.jar:lib/dom4j-1.6.1.jar:lib/jsr305.jar:lib/AppleJavaExtensions.jar"
+ classpathref="findbugs.classpath"
destdir="${annotationDoc.dir}"
packagenames="edu.umd.cs.findbugs.annotations"
doctitle="FindBugs Annotation Documentation"