Changeset 16167 in josm
- Timestamp:
- 2020-03-17T21:38:34+01:00 (5 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r16166 r16167 948 948 949 949 <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"/> 951 951 <taskdef name="spotbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="${toString:spotbugs.classpath}"/> 952 952 <spotbugs output="xml" … … 964 964 965 965 <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"/> 967 967 <taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask" classpath="${toString:pmd.classpath}"/> 968 968 <pmd shortFilenames="true" cacheLocation="${pmd.dir}/cache" encoding="UTF-8"> -
trunk/ivy.xml
r16166 r16167 10 10 <conf name="runtimeOnly" description="The libs shipped with JOSM that we do not need during compilation"/> 11 11 <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"/>14 12 <conf name="epsg" description="Everything epsg needs- which is currently all of JOSM."/> 15 13 <!-- Meta configuration used in build scripts --> … … 28 26 <dependency org="com.drewnoakes" name="metadata-extractor" rev="2.13.0" conf="api->default"/> 29 27 <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"/>40 28 <!-- sources->sources --> 41 29 <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.