forked from pentaho/pentaho-kettle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
57 lines (50 loc) · 1.64 KB
/
pom.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-dbdialog</artifactId>
<version>8.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>PDI DB Dialog</name>
<parent>
<groupId>org.pentaho.di</groupId>
<artifactId>pdi</artifactId>
<version>8.0-SNAPSHOT</version>
</parent>
<dependencies>
<!-- Kettle dependencies -->
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-engine</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Pentaho (non-Kettle) dependencies -->
<dependency>
<groupId>pentaho</groupId>
<artifactId>pentaho-xul-core</artifactId>
</dependency>
<dependency>
<groupId>pentaho</groupId>
<artifactId>pentaho-xul-swt</artifactId>
</dependency>
<dependency>
<groupId>pentaho</groupId>
<artifactId>pentaho-xul-swing</artifactId>
</dependency>
<!-- Third-party (external) dependencies -->
<dependency>
<groupId>org.eclipse.swt</groupId>
<artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</dependency>
</dependencies>
</project>