-
Notifications
You must be signed in to change notification settings - Fork 154
/
pom.xml
66 lines (61 loc) · 2.31 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
58
59
60
61
62
63
64
65
66
<?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>
<parent>
<groupId>org.pentaho</groupId>
<artifactId>pentaho-ce-jar-parent-pom</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
</parent>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-sdk-plugin-parent</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Pentaho Data Integration SDK Parent POM</name>
<modules>
<module>kettle-sdk-database-plugin</module>
<module>kettle-sdk-embedding-samples</module>
<module>kettle-sdk-jobentry-plugin</module>
<module>kettle-sdk-partitioner-plugin</module>
<module>kettle-sdk-step-plugin</module>
<module>kettle-sdk-plugin-assembly</module>
</modules>
<properties>
<eula-wrap_create-dist-phase></eula-wrap_create-dist-phase>
<eula-wrap_assign-deps-to-properties-phase></eula-wrap_assign-deps-to-properties-phase>
<mockito.version>5.10.0</mockito.version>
<pentaho-metadata.version>10.3.0.0-SNAPSHOT</pentaho-metadata.version>
<eula-wrap_create-izpack-installer-jar-phase></eula-wrap_create-izpack-installer-jar-phase>
<pdi.version>10.3.0.0-SNAPSHOT</pdi.version>
<eula-wrap_attach-dist-phase></eula-wrap_attach-dist-phase>
<junit.version>4.13.2</junit.version>
</properties>
<repositories>
<repository>
<id>pentaho-public</id>
<name>Pentaho Public</name>
<url>https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>interval:15</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>pentaho-public-plugins</id>
<name>Pentaho Public Plugins</name>
<url>https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
</pluginRepository>
</pluginRepositories>
</project>