-
Notifications
You must be signed in to change notification settings - Fork 53
/
pom.xml
105 lines (99 loc) · 3.53 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?xml version="1.0" encoding="UTF-8"?>
<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>org.pentaho.ctools</groupId>
<artifactId>cgg-parent</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>Mozilla Public License, Version 2.0</name>
<url>http://www.mozilla.org/MPL/2.0/index.txt</url>
</license>
</licenses>
<modules>
<module>core</module>
<module>pentaho</module>
<module>assemblies</module>
<module>js-intl-polyfill</module>
</modules>
<scm>
<connection>scm:git:[email protected]:webdetails/${project.artifactId}.git</connection>
<developerConnection>scm:git:[email protected]:webdetails/${project.artifactId}.git</developerConnection>
<url>scm:git:[email protected]:webdetails/${project.artifactId}.git</url>
</scm>
<properties>
<timestamp>${maven.build.timestamp}</timestamp>
<maven.build.timestamp.format>yyyy/MM/dd hh\:mm</maven.build.timestamp.format>
<project.stage>master</project.stage>
<rhino.version>1.7.13</rhino.version>
<pentaho-cpf-plugin.version>10.3.0.0-SNAPSHOT</pentaho-cpf-plugin.version>
<platform.version>10.3.0.0-SNAPSHOT</platform.version>
<commons-lang.version>2.6</commons-lang.version>
<xalan.version>2.7.1</xalan.version>
<pentaho-cgg-plugin.version>10.3.0.0-SNAPSHOT</pentaho-cgg-plugin.version>
<mail.version>1.4.1</mail.version>
<javax.servlet-api>3.0.1</javax.servlet-api>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.mozilla</groupId>
<artifactId>rhino</artifactId>
<version>${rhino.version}</version>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>pentaho</groupId>
<artifactId>cpf-core</artifactId>
<version>${pentaho-cpf-plugin.version}</version>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>pentaho</groupId>
<artifactId>cpf-pentaho</artifactId>
<version>${pentaho-cpf-plugin.version}</version>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons-lang.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- fop depends on org.apache.xmlgraphics batik 1.9 and will break during resolve whenever it is allowed to get transitive -->
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop</artifactId>
<version>2.2</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
</project>