-
Notifications
You must be signed in to change notification settings - Fork 145
/
pom.xml
188 lines (176 loc) · 5.96 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?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>pentaho</groupId>
<artifactId>cdf-plugin</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>core</module>
<module>core-js</module>
<module>pentaho</module>
<module>pentaho-js</module>
<module>assemblies</module>
<module>pentaho-rca</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>
<distributionManagement>
<site>
<id>pentaho.public.snapshot.repo</id>
<name>${project.artifactId}-${project.version}</name>
<url>dav:${site.publish.url}/${project.groupId}/cdf-plugin-${project.version}</url>
</site>
</distributionManagement>
<properties>
<commons-io.version>1.3</commons-io.version>
<commons-lang.version>2.2</commons-lang.version>
<hibernate.version>5.4.24.Final</hibernate.version>
<javax.persistence-api.version>2.2</javax.persistence-api.version>
<jxl.version>2.6.12</jxl.version>
<pentaho-ccc-plugin.version>10.3.0.0-SNAPSHOT</pentaho-ccc-plugin.version>
<pentaho-cpf-plugin.version>10.3.0.0-SNAPSHOT</pentaho-cpf-plugin.version>
<pentaho-json.version>10.3.0.0-SNAPSHOT</pentaho-json.version>
<servlet-api.version>2.4</servlet-api.version>
<owasp-encoder.version>1.2</owasp-encoder.version>
<mockito-core.version>5.10.0</mockito-core.version>
<global.require.file></global.require.file>
<requirejs.config.files.pattern></requirejs.config.files.pattern>
<project.stage>master</project.stage>
<project.github-name>cdf</project.github-name>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>pentaho</groupId>
<artifactId>cpf-core</artifactId>
<version>${pentaho-cpf-plugin.version}</version>
</dependency>
<dependency>
<groupId>pentaho</groupId>
<artifactId>cpf-pentaho</artifactId>
<version>${pentaho-cpf-plugin.version}</version>
</dependency>
<dependency>
<groupId>org.pentaho.ctools</groupId>
<artifactId>ccc</artifactId>
<version>${pentaho-ccc-plugin.version}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.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>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.pentaho</groupId>
<artifactId>json</artifactId>
<version>${pentaho-json.version}</version>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${servlet-api.version}</version>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jexcelapi</groupId>
<artifactId>jxl</artifactId>
<version>${jxl.version}</version>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.owasp.encoder</groupId>
<artifactId>encoder</artifactId>
<version>${owasp-encoder.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<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>