source: josm/trunk/ivy.xml@ 15977

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

see #16860, see #18140 - Setup Apache Ivy (patch by wiktorn, modified)

File size: 1.3 KB
Line 
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 </dependencies>
20</ivy-module>
Note: See TracBrowser for help on using the repository browser.