Changeset 33491 in osm for applications/editors
- Timestamp:
- 2017-08-09T22:12:19+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r33490 r33491 17 17 <property name="error_prone_ant.jar" location="../00_core_tools/error_prone_ant.jar"/> 18 18 <property name="checkstyle.jar" location="../00_core_tools/checkstyle/checkstyle-all.jar"/> 19 <property name="checkstyle-build.dir" location="../00_core_tools/checkstyle/build"/> 19 20 <property name="findbugs-ant.jar" location="../00_core_tools/findbugs/findbugs-ant.jar"/> 20 21 <property name="annotations.jar" location="../00_core_tools/findbugs/annotations.jar"/> … … 302 303 <target name="clean"> 303 304 <delete dir="${plugin.build.dir}"/> 305 <delete dir="${checkstyle-build.dir}"/> 304 306 <delete file="${plugin.jar}"/> 305 307 </target> … … 514 516 </target> 515 517 516 <target name="checkstyle"> 517 <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties" classpath="${checkstyle.jar}"/> 518 <checkstyle config="../00_core_tools/checkstyle/josm_checks.xml"> 518 <target name="checkstyle-compile"> 519 <mkdir dir="${checkstyle-build.dir}"/> 520 <javac sourcepath="" srcdir="../00_core_tools/checkstyle/src" failonerror="true" 521 destdir="${checkstyle-build.dir}" target="${ant.build.javac.target}" source="${ant.build.javac.source}" debug="on" 522 includeantruntime="false" createMissingPackageInfoClass="false" 523 encoding="UTF-8" classpath="${checkstyle.jar}"> 524 </javac> 525 </target> 526 <target name="checkstyle" depends="checkstyle-compile"> 527 <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties" classpath="${checkstyle.jar}:${checkstyle-build.dir}"/> 528 <checkstyle config="${basedir}/../00_core_tools/checkstyle/josm_checks.xml"> 519 529 <fileset dir="${basedir}/src" includes="**/*.java" excludes="boofcv/**/*.java, 520 530 com/google/**/*.java,
Note:
See TracChangeset
for help on using the changeset viewer.