-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
131 lines (122 loc) · 4.07 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
<?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.tahopen</groupId>
<artifactId>tahopen-ce-jar-parent-pom</artifactId>
<version>0.1.0.0-SNAPSHOT</version>
</parent>
<groupId>org.tahopen</groupId>
<artifactId>tahopen-drianmon-parent-pom</artifactId>
<version>0.1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Tahopen Driamon Parent POM</name>
<description>Container pom for Drianmon and Drianmon workbench</description>
<url>http://www.tahopen.org</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>
<properties>
<license.licenseName>epl_only_v1</license.licenseName>
<olap4j.version>1.2.0</olap4j.version>
<eigenbase-properties.version>1.1.4</eigenbase-properties.version>
<mysql-connector-java.version>8.0.27</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>
<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>1.9.5</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>drianmon</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>redhat-ga-repository</id>
<name>Redhat GA Repository</name>
<url>https://maven.repository.redhat.com/ga/</url>
</repository>
<repository>
<id>spring</id>
<name>Spring Repository</name>
<url>https://repo.spring.io/plugins-release/</url>
</repository>
<repository>
<id>spring-snapshot</id>
<name>Spring Snapshot Repository</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
-->
</repositories>
<pluginRepositories>
<!--
<pluginRepository>
<id>redhat-ga-repository</id>
<name>Redhat GA Repository</name>
<url>https://maven.repository.redhat.com/ga/</url>
</pluginRepository>
<pluginRepository>
<id>mavencentral</id>
<url>https://repo.maven.apache.org/maven2</url>
</pluginRepository>
<pluginRepository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</pluginRepository>
<pluginRepository>
<id>spring-snapshots</id>
<url>https://repo.spring.io/snapshot</url>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<url>https://repo.spring.io/milestone</url>
</pluginRepository>
-->
</pluginRepositories>
</project>