forked from eclipse-collections/eclipse-collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivy.xml
58 lines (48 loc) · 2.22 KB
/
ivy.xml
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
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2015 Goldman Sachs.
~ All rights reserved. This program and the accompanying materials
~ are made available under the terms of the Eclipse Public License v1.0
~ and Eclipse Distribution License v. 1.0 which accompany this distribution.
~ The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
~ and the Eclipse Distribution License is available at
~ http://www.eclipse.org/org/documents/edl-v10.php.
-->
<ivy-module
version="2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://incubator.apache.org/ivy/schemas/ivy.xsd">
<info organisation="org.eclipse.collections" module="eclipse-collections-api" />
<configurations>
<conf name="default"
description="runtime dependencies and master artifact are used with this conf"
extends="runtime, master" />
<conf name="master" description="contains only the artifact, with no transitive dependencies" />
<conf name="sources" />
<conf name="generate-sources" />
<conf name="compile" transitive="false" />
<conf name="optional" transitive="false" />
<conf name="runtime" extends="compile, optional" />
<conf name="compile-test" transitive="false" extends="compile" />
<conf name="test" extends="runtime, compile-test" />
</configurations>
<publications xmlns:extra="http://ant.apache.org/ivy/extra">
<artifact />
<artifact type="pom" />
<artifact type="source" ext="jar" extra:classifier="sources" />
<artifact type="javadoc" ext="jar" extra:classifier="javadoc" />
</publications>
<dependencies defaultconfmapping="*->default">
<!--generate-sources-->
<dependency org="org.eclipse.collections"
name="eclipse-collections-code-generator-ant"
rev="${build.version.full}"
conf="generate-sources"
changing="true">
</dependency>
<!-- compile -->
<dependency org="net.jcip" name="jcip-annotations" rev="${jcip.version}" conf="optional" />
<!-- test -->
<conflict manager="strict" />
</dependencies>
</ivy-module>