aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-11-08 22:09:49 +0100
committerReinier Zwitserloot <reinier@tipit.to>2009-11-08 22:09:49 +0100
commit9830a2ba02bbed18f773216888bc21c1ceb15995 (patch)
tree33b7d7c2b6a34d9a8de6552d34ea8cab67890b20 /build.xml
parent56602322d9c44b69017b345aaca5b3807fd5d427 (diff)
downloadlombok-9830a2ba02bbed18f773216888bc21c1ceb15995.tar.gz
lombok-9830a2ba02bbed18f773216888bc21c1ceb15995.tar.bz2
lombok-9830a2ba02bbed18f773216888bc21c1ceb15995.zip
Added a findbugs ant target, along with an installDeps job to automatically fetch and unpack findbugs from its sourceforge repository. Still need to figure out how to maintain a list of findbugs warnings that findbugs should be ignoring.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 65e355f0..8d45154f 100644
--- a/build.xml
+++ b/build.xml
@@ -75,6 +75,10 @@ the common tasks and can be called on to run the main aspects of all the sub-scr
</ant>
</target>
+ <target name="findbugs" description="Runs findbugs on the code">
+ <ant antfile="buildScripts/compile.ant.xml" target="findbugs" inheritAll="false" />
+ </target>
+
<target name="maven" depends="version" description="Build a maven repository">
<ant antfile="buildScripts/maven.ant.xml" target="maven" inheritAll="false">
<property name="lombok.version" value="${lombok.version}" />