Mercurial > public > html2wiki
diff build.xml @ 1:b6e94d49a9a9
Add checkstyle and findbugs tasks.
author | smith@nwoca.org |
---|---|
date | Thu, 08 Jun 2006 18:11:12 -0400 |
parents | f8b1ea49d065 |
children | 5da2e67620f9 |
line wrap: on
line diff
--- a/build.xml Fri May 12 16:45:42 2006 -0400 +++ b/build.xml Thu Jun 08 18:11:12 2006 -0400 @@ -15,6 +15,7 @@ <import file="${tools.dir}/jalopy/ant/jalopy-ant.xml" optional="true"/> <import file="${tools.dir}/checkstyle/ant/checkstyle-ant.xml"/> + <import file="${tools.dir}/findbugs/ant/findbugs-ant.xml"/> <!-- There exist several targets which are by default empty and which can be @@ -76,8 +77,12 @@ nbproject/build-impl.xml file. --> -<!-- <target name="-pre-compile-single"> + <target name="-pre-compile-single"> <antcall target="jalopy-single"/> </target> ---> + + <target name="checkstyle" depends="compile,do-checkstyle"/> + <target name="findbugs" depends="compile,-do-findbugs"/> + <target name="findbugs-view" depends="compile,-do-findbugsViewer"/> + </project>