source: josm/trunk/tools/ivy.xml@ 16167

Last change on this file since 16167 was 16167, checked in by simon04, 4 years ago

see #16860 - Separate tools/ivy.xml

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!-- License: GPL. For details, see LICENSE file. -->
3<ivy-module version="2.0" xmlns:maven="http://ant.apache.org/ivy/maven">
4 <info organisation="org.openstreetmap" module="josm"/>
5 <configurations>
6 <conf name="pmd" description="Everything needed for running PMD"/>
7 <conf name="spotbugs" description="Everything needed for running SpotBugs"/>
8 </configurations>
9 <dependencies>
10 <!-- pmd->default -->
11 <dependency org="net.sourceforge.pmd" name="pmd-core" rev="6.20.0" conf="pmd->default"/>
12 <dependency org="net.sourceforge.pmd" name="pmd-java" rev="6.20.0" conf="pmd->default"/>
13 <dependency org="net.sourceforge.saxon" name="saxon" rev="9.1.0.8" conf="pmd->default">
14 <artifact name="saxon" type="jar"/>
15 <artifact name="saxon" type="jar" maven:classifier="dom"/>
16 </dependency>
17 <!-- spotbugs->default -->
18 <dependency org="com.github.spotbugs" name="spotbugs" rev="3.1.12" conf="spotbugs->default"/>
19 <dependency org="com.github.spotbugs" name="spotbugs-ant" rev="3.1.12" conf="spotbugs->default"/>
20 </dependencies>
21</ivy-module>
Note: See TracBrowser for help on using the repository browser.