forked from nhatminhle/cofoja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ivy.xml
20 lines (20 loc) · 862 Bytes
/
ivy.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<ivy-module version="2.0">
<info organisation="org.huoc" module="cofoja" />
<configurations>
<conf name="core" description="core libraries" />
<conf name="contracts" extends="core"
description="core libraries with contracts" />
<conf name="test" extends="core" visibility="private"
description="for testing" />
</configurations>
<publications>
<artifact conf="core" />
<artifact name="cofoja+contracts" conf="contracts" />
</publications>
<dependencies>
<dependency org="org.ow2.asm" name="asm-commons" rev="7.2" conf="*->default" />
<dependency org="org.ow2.asm" name="asm-tree" rev="7.2" conf="*->default" />
<dependency org="org.ow2.asm" name="asm" rev="7.2" conf="*->default" />
<dependency org="junit" name="junit-dep" rev="[4.11,)" conf="test->default" />
</dependencies>
</ivy-module>