-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathivy.xml
23 lines (23 loc) · 1.27 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
<ivy-module version="2.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
<info organisation="org.romaframework" module="roma-core" revision="3.0.0-SNAPSHOT" >
<license name="Apache 2" url="http://www.apache.org/licenses/LICENSE-2.0.txt"/>
</info>
<configurations defaultconfmapping="*->*,!sources,!javadoc,!optional">
<conf name="default" visibility="public" />
<conf name="test" visibility="public" />
<conf name="wizard" visibility="public" />
<conf name="publish" visibility="public" />
</configurations>
<publications>
<artifact name="roma-core" ext="jar" type="jar" conf="default"></artifact>
<artifact name="roma-core-test" ext="jar" type="jar" conf="test"></artifact>
<artifact name="roma-core-wizard" ext="zip" type="zip" conf="wizard"></artifact>
</publications>
<dependencies>
<dependency org="org.springframework" name="spring-context" rev="latest.integration" conf="*->default"/>
<dependency org="commons-jxpath" name="commons-jxpath" rev="latest.integration" conf="*->default" />
<dependency org="junit" name="junit" rev="latest.integration" conf="test->default" />
<exclude org="org.springframework" module="spring-aop" />
</dependencies>
</ivy-module>