-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathivy.xml
More file actions
31 lines (26 loc) · 806 Bytes
/
ivy.xml
File metadata and controls
31 lines (26 loc) · 806 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0">
<info organisation="org.jax" module="java-util" revision="1.0"/>
<configurations>
<conf
name="compile"
description="dependencies needed to compile"/>
<conf
name="test"
extends="compile"
description="dependencies needed to test"/>
</configurations>
<publications>
<artifact name="java-util" type="jar" ext="jar"/>
</publications>
<dependencies>
<dependency
org="org.javadesktop"
name="swing-layout"
rev="latest.integration"/>
<dependency
org="org.junit"
name="junit"
rev="latest.integration"/>
</dependencies>
</ivy-module>