-
Notifications
You must be signed in to change notification settings - Fork 724
/
pom.xml
112 lines (109 loc) · 3.82 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
<?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</groupId>
<artifactId>pentaho-mondrian-parent-pom</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Pentaho Mondrian Parent POM</name>
<description>Container pom for mondrian and mondrian workbench</description>
<url>http://www.pentaho.com</url>
<licenses>
<license>
<name>Eclipse Public License (EPL), Version 1.0</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:pentaho/mondrian.git</connection>
<developerConnection>scm:git:[email protected]:pentaho/mondrian.git</developerConnection>
<url>scm:git:[email protected]:pentaho/mondrian.git</url>
</scm>
<properties>
<license.licenseName>epl_only_v1</license.licenseName>
<maven-failsafe-plugin.version>3.2.5</maven-failsafe-plugin.version>
<olap4j.version>1.2.0</olap4j.version>
<eigenbase-properties.version>1.1.2</eigenbase-properties.version>
<mysql-connector-j.version>8.3.0</mysql-connector-j.version>
<olap4j-tck.version>1.0.1.539</olap4j-tck.version>
<eigenbase-resgen.version>1.3.1</eigenbase-resgen.version>
<junit.version>3.8.1</junit.version>
<commons-pool2.version>2.11.1</commons-pool2.version>
<validation-api.version>1.0.0.GA</validation-api.version>
<commons-collections.version>3.2.2</commons-collections.version>
<commons-math.version>1.1</commons-math.version>
<olap4j-xmla.version>1.2.0</olap4j-xmla.version>
<jsp-api.version>2.0</jsp-api.version>
<mockito-all.version>5.10.0</mockito-all.version>
<commons-dbcp2.version>2.9.0</commons-dbcp2.version>
<olap4j-xmlaserver.version>1.2.0</olap4j-xmlaserver.version>
<eigenbase-xom.version>1.3.5</eigenbase-xom.version>
<servlet-api.version>2.4</servlet-api.version>
<commons-lang.version>2.4</commons-lang.version>
<xmlunit.version>1.1</xmlunit.version>
</properties>
<profiles>
<profile>
<id>mondrian</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>mondrian</module>
</modules>
</profile>
<profile>
<id>workbench</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>workbench</module>
</modules>
</profile>
<profile>
<id>assemblies</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>assemblies</module>
</modules>
</profile>
</profiles>
<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>