This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ivy.xml
36 lines (28 loc) · 1.84 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
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="${ivy.artifact.group}" module="${ivy.artifact.id}" revision="${project.revision}" />
<configurations>
<conf name="default"/>
<conf name="runtime"/>
<conf name="source" />
<conf name="test" visibility="private"/>
</configurations>
<publications>
<artifact name="${ivy.artifact.id}" type="jar" conf="default"/>
<artifact name="${ivy.artifact.id}" m:classifier="sources" type="source" ext="jar" conf="source" />
</publications>
<dependencies defaultconf="default->default">
<!-- third party dependencies -->
<dependency org="commons-io" name="commons-io" rev="1.4" transitive="false"/>
<dependency org="commons-logging" name="commons-logging" rev="1.1" transitive="false"/>
<dependency org="net.sf.flexjson" name="flexjson" rev="2.1" transitive="false" conf="default->default"/>
<dependency org="org.json" name="json" rev="3.1.1" conf="default->default"/>
<dependency org="javax.servlet" name="servlet-api" rev="2.4" />
<dependency org="pentaho-kettle" name="kettle-db" rev="${dependency.kettle.revision}" changing="true"/>
<dependency org="pentaho-kettle" name="kettle-core" rev="${dependency.kettle.revision}" changing="true"/>
<dependency org="pentaho-kettle" name="kettle-engine" rev="${dependency.kettle.revision}" changing="true"/>
<dependency org="pentaho-kettle" name="kettle-ui-swt" rev="${dependency.kettle.revision}" changing="true"/>
<!-- Testing dependencies -->
<dependency org="junit" name="junit" rev="4.4" conf="test->default" />
</dependencies>
</ivy-module>