Changeset 36208 in osm for applications/editors
- Timestamp:
- 2024-02-12T23:01:03+01:00 (12 months ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r36176 r36208 18 18 <property name="josm.test.build.dir" location="../../core/test/build"/> 19 19 <property name="jmockit.jar" location="../00_core_test_lib/jmockit.jar"/> 20 <property name="checkstyle-build.dir" location="../00_core_tools/checkstyle/build"/>21 20 <property name="annotations.jar" location="../00_core_tools/spotbugs/spotbugs-annotations.jar"/> 22 21 <property name="core.tools.ivy" location="../00_core_tools/ivy.xml"/> … … 411 410 <delete dir="${plugin.build.dir}"/> 412 411 <delete dir="${plugin.doc.dir}"/> 413 <delete dir="${checkstyle-build.dir}"/>414 412 <delete file="${plugin.jar}"/> 415 413 <delete file="${plugin.sources.jar}"/> … … 648 646 </target> 649 647 650 <target name="checkstyle-compile" depends="resolve-tools"> 651 <mkdir dir="${checkstyle-build.dir}"/> 652 <javac sourcepath="" srcdir="../00_core_tools/checkstyle/src" failonerror="true" 653 destdir="${checkstyle-build.dir}" release="${java.lang.version}" debug="on" 654 includeantruntime="false" createMissingPackageInfoClass="false" 655 encoding="UTF-8" classpathref="checkstyle.classpath"> 656 </javac> 657 </target> 658 <target name="checkstyle" depends="checkstyle-compile"> 648 <target name="checkstyle" depends="resolve-tools"> 659 649 <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"> 660 650 <classpath refid="checkstyle.classpath"/> 661 <classpath path="${checkstyle-build.dir}"/>662 651 </taskdef> 663 652 <checkstyle config="${basedir}/../checkstyle-config.xml"> -
applications/editors/josm/plugins/checkstyle-config.xml
r36165 r36208 32 32 <property name="checkHtml" value="false"/> 33 33 </module> 34 <module name="MissingJavadocType"/> 34 35 <module name="NonEmptyAtclauseDescription"/> 35 36 <module name="AtclauseOrder"/> … … 96 97 <module name="FinalClass"/> 97 98 <module name="HideUtilityClassConstructor"/> 98 <module name="org.openstreetmap.josm.TopLevelJavadocCheck"/>99 99 <module name="SuppressionCommentFilter"> 100 100 <property name="offCommentFormat" value="CHECKSTYLE\.OFF\: ([\w\|]+)"/>
Note:
See TracChangeset
for help on using the changeset viewer.