comparison 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
comparison
equal deleted inserted replaced
0:f8b1ea49d065 1:b6e94d49a9a9
13 <property name="ssdt.home.dir" value="../../"/> 13 <property name="ssdt.home.dir" value="../../"/>
14 <property name="tools.dir" value="${ssdt.home.dir}/Tools"/> 14 <property name="tools.dir" value="${ssdt.home.dir}/Tools"/>
15 <import file="${tools.dir}/jalopy/ant/jalopy-ant.xml" optional="true"/> 15 <import file="${tools.dir}/jalopy/ant/jalopy-ant.xml" optional="true"/>
16 <import file="${tools.dir}/checkstyle/ant/checkstyle-ant.xml"/> 16 <import file="${tools.dir}/checkstyle/ant/checkstyle-ant.xml"/>
17 17
18 <import file="${tools.dir}/findbugs/ant/findbugs-ant.xml"/>
18 <!-- 19 <!--
19 20
20 There exist several targets which are by default empty and which can be 21 There exist several targets which are by default empty and which can be
21 used for execution of your tasks. These targets are usually executed 22 used for execution of your tasks. These targets are usually executed
22 before and after some main targets. They are: 23 before and after some main targets. They are:
74 the compile target as the regular run target does. Again, for a list of available 75 the compile target as the regular run target does. Again, for a list of available
75 properties which you can use, check the target you are overriding in the 76 properties which you can use, check the target you are overriding in the
76 nbproject/build-impl.xml file. 77 nbproject/build-impl.xml file.
77 78
78 --> 79 -->
79 <!-- <target name="-pre-compile-single"> 80 <target name="-pre-compile-single">
80 <antcall target="jalopy-single"/> 81 <antcall target="jalopy-single"/>
81 </target> 82 </target>
82 --> 83
84 <target name="checkstyle" depends="compile,do-checkstyle"/>
85 <target name="findbugs" depends="compile,-do-findbugs"/>
86 <target name="findbugs-view" depends="compile,-do-findbugsViewer"/>
87
83 </project> 88 </project>