Skip to content

Commit bd57a81

Browse files
committed
Updates to get FindBugs working correctly with "ant findbugs". From JRUBY-2292.
Thanks to James Abley for getting ivy+findbugs wired up nicely!
1 parent 480efa2 commit bd57a81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ivy/build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<taskdef name="findbugs" classpathref="check.path" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/>
5454

5555
<findbugs classpathref="check.path" pluginList="" output="html" outputfile="${basedir}/jruby-findbugs.html"
56-
excludefilter="${basedir}/findbugs.xml">
56+
excludefilter="${basedir}/findbugs.xml" jvmargs="-Xmx512M">
5757
<sourcepath path="${basedir}/source" />
5858
<class location="${jruby.classes.dir}" />
5959
<auxclasspath>

ivy/ivy.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
<artifact name="jruby-sources" />
1111
</publications>
1212
<dependencies>
13-
<dependency org="com.google.code.findbugs" name="findbugs" rev="1.3.8" conf="check->*" />
13+
<dependency org="com.google.code.findbugs" name="findbugs" rev="1.3.9" conf="check->*" />
1414
</dependencies>
1515
</ivy-module>

0 commit comments

Comments
 (0)