File: ivysettings.xml

package info (click to toggle)
osmosis 0.48.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,596 kB
  • sloc: java: 42,402; sql: 2,451; xml: 734; sh: 396; makefile: 19
file content (46 lines) | stat: -rw-r--r-- 1,506 bytes parent folder | download | duplicates (8)
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
36
37
38
39
40
41
42
43
44
45
46
<ivysettings>

	<settings defaultResolver="debian-m2"/>

	<resolvers>

		<!-- This resolver is for artifacts that have a POM in Maven repository;
                     everything should come from here, unless the exceptions below. -->
		<ibiblio
			name="debian-m2"
			m2compatible="true"
			root="file:///usr/share/maven-repo"/>

		<!-- Some artifacts used within osmosis are dependencies for others; this
                     resolver make them available. -->
		<filesystem name="local">
			<artifact pattern="${debian.dir}/../build/[artifact].[ext]" />
		</filesystem>

		<!-- This resolver is for artifacts without POMs; they're selected using
                     only their filename. -->
		<filesystem name="share-java">
			<artifact pattern="/usr/share/java/[artifact](-[revision]).[ext]" />
		</filesystem>

	</resolvers>

	<!-- Do not use the user cache, but use a directory in debian/ -->
	<caches defaultCacheDir="${debian.dir}/ivy-cache">
	</caches>

	<!-- Here we map artifacts to resolvers (everything not declared here uses
             the default resolver, defined above). -->
	<modules>

		<!-- Artifacts from osmosis itself. -->
		<module organisation="org.openstreetmap.osmosis" resolver="local"/>

		<!-- Artifacts without POMs. -->
		<module organisation="postgresql" name="postgresql" resolver="share-java"/>
		<module organisation="crosby" name="osmpbf" resolver="share-java"/>
		<module organisation="org.postgis" name="postgis" resolver="share-java"/>
	</modules>

</ivysettings>