Changeset 35379 in osm for applications/editors/josm
- Timestamp:
- 2020-03-17T23:05:26+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r35378 r35379 23 23 <property name="failureaccess.jar" location="../00_core_tools/failureaccess.jar"/> 24 24 <property name="guava.jar" location="../00_core_tools/guava.jar"/> 25 <property name="checkstyle.jar" location="../00_core_tools/checkstyle/checkstyle-all.jar"/>26 25 <property name="checkstyle-build.dir" location="../00_core_tools/checkstyle/build"/> 27 26 <property name="jformatstring.jar" location="../00_core_tools/spotbugs/jFormatString-3.0.0.jar"/> … … 632 631 633 632 <target name="checkstyle-compile"> 633 <ivy:cachepath file="${core.tools.ivy}" pathid="checkstyle.classpath" conf="checkstyle"/> 634 634 <mkdir dir="${checkstyle-build.dir}"/> 635 635 <javac sourcepath="" srcdir="../00_core_tools/checkstyle/src" failonerror="true" 636 636 destdir="${checkstyle-build.dir}" target="${java.lang.version}" source="${java.lang.version}" debug="on" 637 637 includeantruntime="false" createMissingPackageInfoClass="false" 638 encoding="UTF-8" classpath ="${checkstyle.jar}">638 encoding="UTF-8" classpathref="checkstyle.classpath"> 639 639 </javac> 640 640 </target> 641 641 <target name="checkstyle" depends="checkstyle-compile"> 642 <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties" classpath="${checkstyle.jar}:${checkstyle-build.dir}"/> 642 <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"> 643 <classpath refid="checkstyle.classpath"/> 644 <classpath path="${checkstyle-build.dir}"/> 645 </taskdef> 643 646 <checkstyle config="${basedir}/../checkstyle-config.xml"> 644 647 <fileset dir="${basedir}/src" includes="**/*.java" excludes="boofcv/**/*.java,
Note:
See TracChangeset
for help on using the changeset viewer.