Changeset 8508 in josm for trunk/build.xml


Ignore:
Timestamp:
2015-06-20T14:34:08+02:00 (9 years ago)
Author:
Don-vip
Message:

update jacoco 0.7.5 + add checkstyle 6.7

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        66findbugs-josm.xml
        77javadoc
         8checkstyle-josm.xml
  • trunk/build.xml

    r8173 r8508  
    572572    </target>
    573573
     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
    574583    <target name="findbugs" depends="dist">
    575584        <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.