forked from pentaho/pentaho-kettle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ivy.xml
38 lines (34 loc) · 2.46 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
37
38
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="pentaho" module="pentaho-kettle" revision="${project.revision}" />
<configurations>
<conf name="default" />
<conf name="test" visibility="private" />
<conf name="checkstyle" visibility="private" />
</configurations>
<dependencies defaultconf="default->default">
<!-- Kettle module dependencies-->
<dependency org="${ivy.artifact.group}" name="kettle-core" rev="${project.revision}" changing="true"/>
<dependency org="${ivy.artifact.group}" name="kettle-engine" rev="${project.revision}" changing="true">
<!-- Apache SSHD need more recent version -->
<exclude org="bouncycastle" conf="test" />
</dependency>
<dependency org="${ivy.artifact.group}" name="kettle-dbdialog" rev="${project.revision}" changing="true"/>
<dependency org="${ivy.artifact.group}" name="kettle-ui-swt" rev="${project.revision}" changing="true">
<exclude name="swt-linux-x86_64"/>
</dependency>
<!-- Common (Unit, Integration) test dependencies -->
<dependency org="${ivy.artifact.group}" name="kettle-engine-test" rev="${project.revision}" changing="true" transitive="false" conf="test->default"/>
<dependency org="junit" name="junit" rev="4.7" transitive="false" conf="test->default"/>
<dependency org="org.mockito" name="mockito-all" rev="1.9.5" transitive="false" conf="test->default"/>
<dependency org="org.eclipse.jetty" name="test-jetty-servlet" rev="8.1.15.v20140411" transitive="false" conf="test->default"/>
<dependency org="net.sourceforge.nekohtml" name="nekohtml" rev="1.9.7" transitive="false" conf="test->default"/>
<dependency org="com.puppycrawl.tools" name="checkstyle" rev="${checkstyle.version}" transitive="true" conf="checkstyle->default">
<artifact name="checkstyle" ext="jar" m:classifier="all"/>
</dependency>
<!-- Apache Mina for settling up SFTP and FTPS servers' instances -->
<dependency org="org.apache.sshd" name="sshd-sftp" rev="0.11.0" conf="test->default" transitive="true" />
<dependency org="org.apache.ftpserver" name="ftpserver-core" rev="1.0.6" conf="test->default" transitive="true" />
<dependency org="org.bouncycastle" name="bcprov-jdk14" rev="1.51" conf="test->default" transitive="true" />
</dependencies>
</ivy-module>