| 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 | <!-- Meta configuration used in build scripts -->
|
|---|
| 13 | <conf name="runtime" description="Libraries only needed at runtime" extends="implementation,api,runtimeOnly"/>
|
|---|
| 14 | <conf name="compile" description="Libraries needed only for compilation" extends="implementation,api,provided"/>
|
|---|
| 15 | <conf name="test" description="Libraries only needed for testing" extends="compile,runtime"/>
|
|---|
| 16 | </configurations>
|
|---|
| 17 | <dependencies>
|
|---|
| 18 | <dependency org="com.github.luben" name="zstd-jni" rev="1.4.4-7" conf="api->default"/>
|
|---|
| 19 | <dependency org="org.apache.commons" name="commons-collections4" rev="4.4" conf="api->default"/>
|
|---|
| 20 | <dependency org="org.apache.commons" name="commons-compress" rev="1.20" conf="api->default"/>
|
|---|
| 21 | <dependency org="org.apache.commons" name="commons-imaging" rev="1.0-alpha1" conf="api->default"/>
|
|---|
| 22 | <!-- Apache Commons IO does not use the standard org name -->
|
|---|
| 23 | <dependency org="commons-io" name="commons-io" rev="2.6" conf="api->default"/>
|
|---|
| 24 | <dependency org="org.apache.commons" name="commons-lang3" rev="3.9" conf="api->default"/>
|
|---|
| 25 | <dependency org="org.apache.commons" name="commons-math3" rev="3.6.1" conf="api->default"/>
|
|---|
| 26 | <dependency org="org.apache.commons" name="commons-text" rev="1.8" conf="api->default"/>
|
|---|
| 27 | <dependency org="org.brotli" name="dec" rev="0.1.2" conf="api->default"/>
|
|---|
| 28 | <dependency org="org.tukaani" name="xz" rev="1.8" conf="api->default"/>
|
|---|
| 29 | </dependencies>
|
|---|
| 30 | </ivy-module>
|
|---|