-
Notifications
You must be signed in to change notification settings - Fork 46
/
pom.xml
82 lines (75 loc) · 2.49 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.pentaho.ctools</groupId>
<artifactId>sparkl-parent</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Sparkl Parent</name>
<parent>
<groupId>org.pentaho</groupId>
<artifactId>pentaho-ce-jar-parent-pom</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
</parent>
<scm>
<developerConnection>scm:git:[email protected]:webdetails/sparkl.git</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<pentaho-sparkl-plugin.version>10.3.0.0-SNAPSHOT</pentaho-sparkl-plugin.version>
<pentaho-cpf-plugin.version>10.3.0.0-SNAPSHOT</pentaho-cpf-plugin.version>
<pentaho-cpk-plugin.version>10.3.0.0-SNAPSHOT</pentaho-cpk-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>pentaho</groupId>
<artifactId>cpf-core</artifactId>
<version>${pentaho-cpf-plugin.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>pentaho</groupId>
<artifactId>cpf-pentaho</artifactId>
<version>${pentaho-cpf-plugin.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.pentaho.ctools</groupId>
<artifactId>cpk-core</artifactId>
<version>${pentaho-cpk-plugin.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.pentaho.ctools</groupId>
<artifactId>cpk-pentaho5</artifactId>
<version>${pentaho-cpk-plugin.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>assemblies</module>
</modules>
</project>