- Timestamp:
- 12/08/11 17:43:55 (13 years ago)
- Location:
- trunk/JavaCommons
- Files:
-
- 18 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaCommons
- Property svn:ignore
-
old new 16 16 17 17 inst 18 19 findbugs
-
- Property svn:ignore
-
trunk/JavaCommons/build.xml
r281 r282 95 95 <property name="JFCMonitor.jarname" value="jfcmonitor.jar" /> 96 96 <property name="JFCMonitor.location" value="../JFCMonitor" /> 97 <path id="JFCMonitor.classpath" /> 97 <path id="JFCMonitor.classpath"> 98 <pathelement location="${build.location.jfcmonitor}" /> 99 </path> 98 100 99 101 <!-- Emma Configuration --> … … 130 132 </path> 131 133 <path id="EventBenchCoreJUnitExecute.classpath"> 132 133 134 135 134 <pathelement location="${coverage.instrumented.eventbenchcore}" /> 135 <path refid="EventBenchCoreJUnitCompile.classpath" /> 136 <path refid="emma.classpath" /> 137 </path> 136 138 137 139 <!-- JUnit Test JavaHelperLib Properties --> … … 151 153 </path> 152 154 153 155 <!-- FindBugs Properties --> 156 <property name="findbugs.results.location" value="findbugs" /> 157 <path id="findbugs.classpath"> 158 <pathelement location="lib-test/findbugs-ant.jar" /> 159 </path> 160 <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" 161 classpathref="findbugs.classpath" /> 154 162 155 163 <!-- Initialization Targets --> … … 198 206 <mkdir dir="${coverage.location}" /> 199 207 </target> 208 <target name="init.findbugs"> 209 <mkdir dir="${findbugs.results.location}" /> 210 </target> 200 211 201 212 <!-- Clean-up Targets --> … … 217 228 <delete dir="${coverage.instrumented}" /> 218 229 </target> 219 <target depends="clean.build,clean.dist,clean.javadoc,clean.junit" 230 <target name="clean.findbugs"> 231 <delete dir="${findbugs.results.location}" /> 232 </target> 233 <target depends="clean.build,clean.dist,clean.javadoc,clean.junit,clean.emma,clean.findbugs" 220 234 name="clean.all" /> 221 235 … … 380 394 </test> 381 395 <jvmarg 382 383 396 value="-Demma.coverage.out.file=${coverage.location}/eventbenchcore.emma" /> 397 <jvmarg value="-Demma.coverage.out.merge=true" /> 384 398 </junit> 385 399 </target> … … 423 437 </emma> 424 438 </target> 439 440 <!-- FindBugs Targets --> 441 <target depends="dist" name="findbugs.javahelperlib"> 442 <mkdir dir="${findbugs.results.location}" /> 443 <findbugs home="lib-test" output="xml" 444 outputFile="${findbugs.results.location}/findbugs-javahelperlib.xml"> 445 <auxClasspath refid="JavaHelperLib.classpath" /> 446 <sourcePath path="${JavaHelperLib.location}" /> 447 <class location="${dist.location.main}/${JavaHelperLib.jarname}" /> 448 </findbugs> 449 </target> 450 <target depends="dist" name="findbugs.eventbenchcore"> 451 <mkdir dir="${findbugs.results.location}" /> 452 <findbugs home="lib-test" output="xml" 453 outputFile="${findbugs.results.location}/findbugs-eventbenchcore.xml"> 454 <auxClasspath refid="EventBenchCore.classpath" /> 455 <sourcePath path="${EventBenchCore.location}" /> 456 <class location="${dist.location.main}/${EventBenchCore.jarname}" /> 457 </findbugs> 458 </target> 459 <target depends="dist" name="findbugs.eventbenchconsole"> 460 <mkdir dir="${findbugs.results.location}" /> 461 <findbugs home="lib-test" output="xml" 462 outputFile="${findbugs.results.location}/findbugs-eventbenchconsole.xml"> 463 <auxClasspath refid="EventBenchConsole.classpath" /> 464 <sourcePath path="${EventBenchConsole.location}" /> 465 <class location="${dist.location.main}/${EventBenchConsole.jarname}" /> 466 </findbugs> 467 </target> 468 <target depends="dist" name="findbugs.jfcmonitor"> 469 <mkdir dir="${findbugs.results.location}" /> 470 <findbugs home="lib-test" output="xml" 471 outputFile="${findbugs.results.location}/findbugs-jfcmonitor.xml"> 472 <auxClasspath refid="JFCMonitor.classpath" /> 473 <sourcePath path="${JFCMonitor.location}" /> 474 <class location="${dist.location.jfcmonitor}/${JFCMonitor.jarname}" /> 475 </findbugs> 476 </target> 477 <target depends="findbugs.javahelperlib,findbugs.eventbenchcore,findbugs.eventbenchconsole,findbugs.jfcmonitor" name="findbugs" /> 425 478 </project>
Note: See TracChangeset
for help on using the changeset viewer.