forked from haosdent/jcgroup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivy.xml
26 lines (22 loc) · 1.13 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
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
<info organisation="ru.odnoklassniki"
module="jcgroup"/>
<configurations>
<conf name="master" visibility="public"
description="contains only the artifact published by this module itself, with no transitive dependencies"/>
<conf name="runtime" visibility="public" transitive="false"/>
<conf name="compile" visibility="private" transitive="false"/>
<conf name="sources" visibility="public"
description="this configuration contains the source artifact of this module, if any."/>
</configurations>
<publications>
<artifact name="jcgroup" type="jar" conf="master"/>
<artifact name="jcgroup" type="source" ext="jar" conf="sources"/>
</publications>
<dependencies>
<dependency org="org.apache.maven" name="maven-ant-tasks" rev="2.1.3" conf="compile->master,sources"/>
</dependencies>
</ivy-module>