File: ivy.xml

package info (click to toggle)
mkgmap-splitter 0.0.0%2Bsvn548-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 1,208 kB
  • sloc: java: 12,369; xml: 1,632; sh: 33; makefile: 17
file content (35 lines) | stat: -rw-r--r-- 1,568 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<ivy-module version="2.0">
	<info organisation="uk.org.mkgmap" module="splitter"/>

	<configurations>
		<conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf" extends="runtime,master"/>
		<conf name="master" visibility="public" description="contains only the artifact published by this module itself, with no transitive dependencies"/>
		<conf name="compile" visibility="public" description="this is the default scope, used if none is specified. Compile dependencies are available in all classpaths."/>
		<conf name="runtime" visibility="public" description="this scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath." extends="compile"/>
		<conf name="test" visibility="public"
					description="this scope indicates that the dependency is required for running tests."
					/>

	</configurations>

	<dependencies>
		<dependency org="com.google.protobuf" name="protobuf-java"
								rev="2.5.0"
								conf="compile->compile(*),master(*)" />

		<dependency org="crosby" name="osmpbf"
								rev="1.3.3"
								conf="compile->compile(*),master(*)"/>

		<dependency org="it.unimi.dsi" name="fastutil"
								rev="6.5.15-mkg.1b"
								conf="compile->default(*)"/>

		<dependency org="xpp3" name="xpp3" rev="1.1.4c"
								conf="compile->default(*)"/>

		<dependency org="org.testng" name="testng" rev="6.8.8"
								conf="test->default(*),master(*)"/>

	</dependencies>
</ivy-module>