Changeset 16167 in josm


Ignore:
Timestamp:
2020-03-17T21:38:34+01:00 (5 years ago)
Author:
simon04
Message:

see #16860 - Separate tools/ivy.xml

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r16166 r16167  
    948948
    949949    <target name="spotbugs" depends="dist">
    950         <ivy:cachepath pathid="spotbugs.classpath" conf="spotbugs"/>
     950        <ivy:cachepath file="${tools.dir}/ivy.xml" pathid="spotbugs.classpath" conf="spotbugs"/>
    951951        <taskdef name="spotbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="${toString:spotbugs.classpath}"/>
    952952        <spotbugs output="xml"
     
    964964
    965965    <target name="pmd" depends="init-properties">
    966         <ivy:cachepath pathid="pmd.classpath" conf="pmd"/>
     966        <ivy:cachepath file="${tools.dir}/ivy.xml" pathid="pmd.classpath" conf="pmd"/>
    967967        <taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask" classpath="${toString:pmd.classpath}"/>
    968968        <pmd shortFilenames="true" cacheLocation="${pmd.dir}/cache" encoding="UTF-8">
  • trunk/ivy.xml

    r16166 r16167  
    1010        <conf name="runtimeOnly" description="The libs shipped with JOSM that we do not need during compilation"/>
    1111        <conf name="provided" description="The libs we need during compilation but not on application start"/>
    12         <conf name="pmd" description="Everything needed for running PMD"/>
    13         <conf name="spotbugs" description="Everything needed for running SpotBugs"/>
    1412        <conf name="epsg" description="Everything epsg needs- which is currently all of JOSM."/>
    1513        <!--  Meta configuration used in build scripts -->
     
    2826        <dependency org="com.drewnoakes" name="metadata-extractor" rev="2.13.0" conf="api->default"/>
    2927        <dependency org="ch.poole" name="OpeningHoursParser" rev="0.21.1" conf="api->default"/>
    30         <!-- pmd->default -->
    31         <dependency org="net.sourceforge.pmd" name="pmd-core" rev="6.20.0" conf="pmd->default"/>
    32         <dependency org="net.sourceforge.pmd" name="pmd-java" rev="6.20.0" conf="pmd->default"/>
    33         <dependency org="net.sourceforge.saxon" name="saxon" rev="9.1.0.8" conf="pmd->default">
    34             <artifact name="saxon" type="jar"/>
    35             <artifact name="saxon" type="jar" maven:classifier="dom"/>
    36         </dependency>
    37         <!-- spotbugs->default -->
    38         <dependency org="com.github.spotbugs" name="spotbugs" rev="3.1.12" conf="spotbugs->default"/>
    39         <dependency org="com.github.spotbugs" name="spotbugs-ant" rev="3.1.12" conf="spotbugs->default"/>
    4028        <!-- sources->sources -->
    4129        <dependency org="javax.json" name="javax.json-api" rev="1.1.4" conf="sources->sources"/>
Note: See TracChangeset for help on using the changeset viewer.