Changeset 8508 in josm
- Timestamp:
- 2015-06-20T14:34:08+02:00 (10 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 6 6 findbugs-josm.xml 7 7 javadoc 8 checkstyle-josm.xml
-
- Property svn:ignore
-
trunk/.project
r8417 r8508 26 26 </arguments> 27 27 </buildCommand> 28 <buildCommand> 29 <name>net.sf.eclipsecs.core.CheckstyleBuilder</name> 30 <arguments> 31 </arguments> 32 </buildCommand> 28 33 </buildSpec> 29 34 <natures> … … 32 37 <nature>org.sonar.ide.eclipse.core.sonarNature</nature> 33 38 <nature>sf.eclipse.javacc.javaccnature</nature> 39 <nature>net.sf.eclipsecs.core.CheckstyleNature</nature> 34 40 </natures> 35 41 </projectDescription> -
trunk/README
r8156 r8508 118 118 used to build and check code signatures to ensure plugins binary compatibility 119 119 - appbundler-1.0ea.jar used to build Mac OS X package for Oracle Java 7 120 - checkstyle/ libs and config files for checkstyle (automatically detects code style 121 problems in source code); can be launched as an ant target in build.xml 120 122 - findbugs/ libs and config files for findbugs (automatically detects common bugs and potential 121 123 problems in source code); can be launched as an ant target in build.xml -
trunk/build.xml
r8173 r8508 572 572 </target> 573 573 574 <target name="checkstyle"> 575 <taskdef resource="checkstyletask.properties" classpath="tools/checkstyle/checkstyle-6.7-all.jar"/> 576 <checkstyle config="tools/checkstyle/josm_checks.xml"> 577 <fileset dir="${basedir}/src/org/openstreetmap/josm" includes="**/*.java"/> 578 <fileset dir="${basedir}/test" includes="**/*.java"/> 579 <formatter type="xml" toFile="checkstyle-josm.xml"/> 580 </checkstyle> 581 </target> 582 574 583 <target name="findbugs" depends="dist"> 575 584 <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="tools/findbugs/findbugs-ant.jar"/>
Note:
See TracChangeset
for help on using the changeset viewer.