-
Notifications
You must be signed in to change notification settings - Fork 0
/
ivy.xml
36 lines (29 loc) · 1.79 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="pentaho-kettle" module="${ivy.artifact.id}" revision="${dependency.kettle.revision}" />
<configurations>
<conf name="default"/>
<conf name="dev"/>
<conf name="test" visibility="private"/>
<conf name="source"/>
<conf name="zip"/>
</configurations>
<!--
<publications>
<artifact name="${ivy.artifact.id}" type="jar" conf="dev"/>
<artifact name="${ivy.artifact.id}" type="zip" conf="zip" />
<artifact name="${ivy.artifact.id}" m:classifier="sources" type="source" ext="jar" conf="source"/>
<artifact name="${ivy.artifact.id}" m:classifier="sources" type="source" ext="zip" conf="source"/>
</publications>
-->
<dependencies defaultconf="default->default">
<dependency org="commons-vfs" name="commons-vfs" rev="20091118-pentaho" transitive="false" conf="dev->default" />
<dependency org="pentaho" name="metastore" rev="${dependency.pentaho-metastore.revision}" changing="true" conf="dev->default" />
<dependency org="pentaho-kettle" name="kettle-core" rev="${dependency.kettle.revision}" conf="dev->default" transitive="false"/>
<dependency org="pentaho-kettle" name="kettle-engine" rev="${dependency.kettle.revision}" conf="dev->default" transitive="false"/>
<dependency org="pentaho-kettle" name="kettle-ui-swt" rev="${dependency.kettle.revision}" conf="dev->default" transitive="false"/>
<!-- SWT it required to compile any version of any architecture will work -->
<dependency org="org.eclipse.swt" name="swt-linux-x86_64" rev="3.7" conf="dev->default" transitive="false"/>
<dependency org="junit" name="junit" rev="4.7" conf="test->default"/>
</dependencies>
</ivy-module>