Changeset 35389 in osm for applications/editors/josm
- Timestamp:
- 2020-03-21T09:42:41+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r35387 r35389 627 627 </target> 628 628 629 <target name="checkstyle-compile"> 630 <ivy:cachepath file="${core.tools.ivy}" pathid="checkstyle.classpath" conf="checkstyle"/> 629 <target name="checkstyle-compile" depends="resolve-tools"> 631 630 <mkdir dir="${checkstyle-build.dir}"/> 632 631 <javac sourcepath="" srcdir="../00_core_tools/checkstyle/src" failonerror="true" … … 663 662 </target> 664 663 665 <target name="spotbugs" depends="compile"> 666 <ivy:cachepath file="${core.tools.ivy}" pathid="spotbugs.classpath" conf="spotbugs"/> 664 <target name="spotbugs" depends="compile,resolve-tools"> 667 665 <taskdef name="spotbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="${toString:spotbugs.classpath}"/> 668 666 <spotbugs output="xml" … … 724 722 <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/> 725 723 </target> 724 <target name="resolve-tools" depends="init-ivy" description="Resolves tools using Apache Ivy"> 725 <ivy:resolve file="${core.tools.ivy}"/> 726 <ivy:cachepath file="${core.tools.ivy}" pathid="checkstyle.classpath" conf="checkstyle"/> 727 <ivy:cachepath file="${core.tools.ivy}" pathid="spotbugs.classpath" conf="spotbugs"/> 728 </target> 726 729 <target name="clean_ivy"> 727 730 <delete failonerror="false">
Note:
See TracChangeset
for help on using the changeset viewer.