1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <!-- License: GPL. For details, see LICENSE file. -->
|
---|
3 | <ivy-module version="2.0">
|
---|
4 | <info organisation="org.openstreetmap" module="josm"/>
|
---|
5 | <configurations>
|
---|
6 | <conf name="ivy" description="Apache Ivy configuration for self-update"/>
|
---|
7 | <!-- configuration that should be used when specifying dependencies -->
|
---|
8 | <conf name="implementation" description="All libs JOSM uses that plugins should not use"/>
|
---|
9 | <conf name="api" description="All libs that JOSM uses and are available for plugins"/>
|
---|
10 | <conf name="runtimeOnly" description="The libs shipped with JOSM that we do not need during compilation"/>
|
---|
11 | <conf name="provided" description="The libs we need during compilation but not on application start"/>
|
---|
12 | <conf name="epsg" description="Everything epsg needs- which is currently all of JOSM."/>
|
---|
13 | <!-- Meta configuration used in build scripts -->
|
---|
14 | <conf name="runtime" description="Libraries only needed at runtime" extends="implementation,api,runtimeOnly"/>
|
---|
15 | <conf name="compile" description="Libraries needed only for compilation" extends="implementation,api,provided"/>
|
---|
16 | <conf name="test" description="Libraries only needed for testing" extends="compile,runtime"/>
|
---|
17 | </configurations>
|
---|
18 | <dependencies>
|
---|
19 | <dependency org="org.glassfish" name="javax.json" rev="1.1.4" conf="api->default"/>
|
---|
20 | <dependency org="commons-logging" name="commons-logging" rev="1.2" conf="api->default"/>
|
---|
21 | <dependency org="org.apache.commons" name="commons-compress" rev="1.20" conf="api->default"/>
|
---|
22 | <dependency org="org.tukaani" name="xz" rev="1.8" conf="api->default"/>
|
---|
23 | <dependency org="com.drewnoakes" name="metadata-extractor" rev="2.13.0" conf="api->default"/>
|
---|
24 | <dependency org="ch.poole" name="OpeningHoursParser" rev="0.21.0" conf="api->default"/>
|
---|
25 | </dependencies>
|
---|
26 | </ivy-module>
|
---|