diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-11-08 22:09:49 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-11-08 22:09:49 +0100 |
commit | 9830a2ba02bbed18f773216888bc21c1ceb15995 (patch) | |
tree | 33b7d7c2b6a34d9a8de6552d34ea8cab67890b20 /build.xml | |
parent | 56602322d9c44b69017b345aaca5b3807fd5d427 (diff) | |
download | lombok-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.xml | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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}" /> |