-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
372 lines (364 loc) · 13.6 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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<?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.tahopen</groupId>
<artifactId>tahopen-ce-bundle-parent-pom</artifactId>
<version>0.1.0.0-SNAPSHOT</version>
</parent>
<groupId>org.tahopen</groupId>
<artifactId>cda-plugin</artifactId>
<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>osgi</module>
<module>assemblies</module>
<module>proxy</module>
</modules>
<properties>
<marketplace.metadata.sequential.build.id>${sequential.build.id}</marketplace.metadata.sequential.build.id>
<sequential.build.id>manual-${maven.build.timestamp}</sequential.build.id>
<pentaho-metadata.version>0.1.0.0-SNAPSHOT</pentaho-metadata.version>
<marketplace.metadata.package_url></marketplace.metadata.package_url>
<marketplace.metadata.description></marketplace.metadata.description>
<project.stage>master</project.stage>
<dependency.mockito-all.revision>1.9.5</dependency.mockito-all.revision>
<marketplace.metadata.min_parent_version>1.0</marketplace.metadata.min_parent_version>
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
<pentaho-reporting.version>0.1.0.0-SNAPSHOT</pentaho-reporting.version>
<pdi-dataservice-client-plugin.version>0.1.0.0-SNAPSHOT</pdi-dataservice-client-plugin.version>
<pdi-dataservice-plugin.version>0.1.0.0-SNAPSHOT</pdi-dataservice-plugin.version>
<pdi.version>0.1.0.0-SNAPSHOT</pdi.version>
<pentaho-cpf-plugin.version>0.1.0.0-SNAPSHOT</pentaho-cpf-plugin.version>
<pentaho-json.version>0.1.0.0-SNAPSHOT</pentaho-json.version>
<pentaho-karaf.version>0.1.0.0-SNAPSHOT</pentaho-karaf.version>
<mondrian.version>0.1.0.0-SNAPSHOT</mondrian.version>
<marketplace.metadata.development_stage.phase>2</marketplace.metadata.development_stage.phase>
<marketplace.metadata.samples_url>http://nexus.pentaho.org/content/groups/omni/pentaho/cda-samples/6.0.0.0-353/cda-samples-6.0.0.0-353.zip</marketplace.metadata.samples_url>
<dependency.jericho-html.revision>3.1</dependency.jericho-html.revision>
<marketplace.metadata.development_stage.lane>Customer</marketplace.metadata.development_stage.lane>
<dependency.hazelcast.revision>2.5</dependency.hazelcast.revision>
<marketplace.metadata.name>${project.artifactId}</marketplace.metadata.name>
<rxjava.version>2.0.4</rxjava.version>
<reactivestreams.version>1.0.2</reactivestreams.version>
<javax.servlet-api>3.0.1</javax.servlet-api>
<commons-collections.version>3.2.2</commons-collections.version>
<metastore.version>0.1.0.0-SNAPSHOT</metastore.version>
<javax.ws.rs-api.version>2.0</javax.ws.rs-api.version>
<websocket-api.version>1.0</websocket-api.version>
<eigenbase-properties.version>1.1.2</eigenbase-properties.version>
<eigenbase-resgen.version>1.3.1</eigenbase-resgen.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.tahopen</groupId>
<artifactId>cpf-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen</groupId>
<artifactId>cpf-tahopen</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.tahopen</groupId>
<artifactId>metastore</artifactId>
<version>${metastore.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>classic-core</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>classic-extensions</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>classic-extensions-kettle</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>classic-extensions-drianmon</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>classic-extensions-olap4j</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>classic-extensions-pmd</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>classic-extensions-reportdesigner-parser</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>classic-extensions-sampledata</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>classic-extensions-scripting</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>classic-extensions-xpath</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>legacy-functions</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.engine</groupId>
<artifactId>wizard-core</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.library</groupId>
<artifactId>libbase</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>tahopen-kettle</groupId>
<artifactId>kettle-core</artifactId>
<version>${pdi.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>tahopen-kettle</groupId>
<artifactId>kettle-engine</artifactId>
<version>${pdi.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.tahopen</groupId>
<artifactId>tahopen-metadata</artifactId>
<version>${pentaho-metadata.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.tahopen</groupId>
<artifactId>drianmon</artifactId>
<version>${mondrian.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.tahopen.di.plugins</groupId>
<artifactId>repository-proxy</artifactId>
<version>${pdi.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.di.plugins</groupId>
<artifactId>excel-plugins-core</artifactId>
<version>${pdi.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen</groupId>
<artifactId>tdi-dataservice-client-plugin-api</artifactId>
<version>${pdi-dataservice-client-plugin.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen</groupId>
<artifactId>tdi-dataservice-client-plugin</artifactId>
<version>${pdi-dataservice-client-plugin.version}</version>
</dependency>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
<version>${dependency.hazelcast.revision}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.library</groupId>
<artifactId>libloader</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen.reporting.library</groupId>
<artifactId>libformula</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.tahopen</groupId>
<artifactId>tdi-dataservice-server-plugin</artifactId>
<version>${pdi-dataservice-plugin.version}</version>
</dependency>
<dependency>
<groupId>net.htmlparser.jericho</groupId>
<artifactId>jericho-html</artifactId>
<version>${dependency.jericho-html.revision}</version>
</dependency>
<dependency>
<groupId>org.tahopen</groupId>
<artifactId>json</artifactId>
<version>${pentaho-json.version}</version>
</dependency>
<dependency>
<groupId>io.reactivex.rxjava2</groupId>
<artifactId>rxjava</artifactId>
<version>${rxjava.version}</version>
</dependency>
<dependency>
<groupId>org.reactivestreams</groupId>
<artifactId>reactive-streams</artifactId>
<version>${reactivestreams.version}</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>${commons-beanutils.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${javax.servlet-api}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>${commons-collections.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>${javax.ws.rs-api.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${dependency.mockito-all.revision}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>${websocket-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>eigenbase</groupId>
<artifactId>eigenbase-properties</artifactId>
<version>${eigenbase-properties.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>eigenbase</groupId>
<artifactId>eigenbase-resgen</artifactId>
<version>${eigenbase-resgen.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>aggregate-reporting</id>
<activation>
<property>
<name>!skipTests</name>
</property>
</activation>
<reporting>
<plugins>
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate-jxr</id>
<reports>
<report>aggregate</report>
</reports>
<inherited>false</inherited>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate-javadoc</id>
<reports>
<report>aggregate</report>
</reports>
<inherited>false</inherited>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate-checkstyle</id>
<reports>
<report>checkstyle-aggregate</report>
</reports>
<inherited>false</inherited>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
<repositories>
</repositories>
<pluginRepositories>
</pluginRepositories>
</project>