forked from pentaho/mondrian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
97 lines (94 loc) · 3.46 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
<?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>8.3.0.0-SNAPSHOT</version>
</parent>
<groupId>pentaho</groupId>
<artifactId>pentaho-mondrian-parent-pom</artifactId>
<version>8.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>
<scm>
<connection>scm:git:git@github.com:pentaho/mondrian.git</connection>
<developerConnection>scm:git:git@github.com:pentaho/mondrian.git</developerConnection>
<url>scm:git:git@github.com:pentaho/mondrian.git</url>
</scm>
<properties>
<copyright.year>2019</copyright.year>
<olap4j.version>1.2.0</olap4j.version>
<commons-vfs2.version>2.2</commons-vfs2.version>
<eigenbase-properties.version>1.1.2</eigenbase-properties.version>
<commons-io.version>1.4</commons-io.version>
<mysql-connector-java.version>5.1.39</mysql-connector-java.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>
<maven-bundle-plugin.version>2.3.7</maven-bundle-plugin.version>
<commons-pool.version>1.2</commons-pool.version>
<validation-api.version>1.0.0.GA</validation-api.version>
<xercesImpl.version>2.9.1</xercesImpl.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>1.9.5</mockito-all.version>
<commons-dbcp.version>1.2.1</commons-dbcp.version>
<olap4j-xmlaserver.version>1.2.0</olap4j-xmlaserver.version>
<dependency.postgres.revision>42.1.1</dependency.postgres.revision>
<commons-logging.version>1.1.1</commons-logging.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>http://nexus.pentaho.org/content/groups/omni/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>interval:15</updatePolicy>
</snapshots>
</repository>
</repositories>
</project>