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

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

see #16860 - Resolve JavaCC using Apache Ivy

File size: 1.4 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="javacc" description="Everything needed for running JavaCC"/>
7 <conf name="pmd" description="Everything needed for running PMD"/>
8 <conf name="spotbugs" description="Everything needed for running SpotBugs"/>
9 </configurations>
10 <dependencies>
11 <!-- javacc->default -->
12 <dependency org="net.java.dev.javacc" name="javacc" rev="7.0.3" conf="javacc->default"/>
13 <!-- pmd->default -->
14 <dependency org="net.sourceforge.pmd" name="pmd-core" rev="6.20.0" conf="pmd->default"/>
15 <dependency org="net.sourceforge.pmd" name="pmd-java" rev="6.20.0" conf="pmd->default"/>
16 <dependency org="net.sourceforge.saxon" name="saxon" rev="9.1.0.8" conf="pmd->default">
17 <artifact name="saxon" type="jar"/>
18 <artifact name="saxon" type="jar" maven:classifier="dom"/>
19 </dependency>
20 <!-- spotbugs->default -->
21 <dependency org="com.github.spotbugs" name="spotbugs" rev="3.1.12" conf="spotbugs->default"/>
22 <dependency org="com.github.spotbugs" name="spotbugs-ant" rev="3.1.12" conf="spotbugs->default"/>
23 </dependencies>
24</ivy-module>
Note: See TracBrowser for help on using the repository browser.