This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpom.xml
153 lines (144 loc) · 5.42 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Hibernate OGM, Domain model persistence for NoSQL datastores
~
~ License: GNU Lesser General Public License (LGPL), version 2.1 or later
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.hibernate.ogm</groupId>
<artifactId>hibernate-ogm-parent</artifactId>
<version>5.3.0-SNAPSHOT</version>
</parent>
<artifactId>hibernate-ogm-ignite-parent</artifactId>
<packaging>pom</packaging>
<name>Hibernate OGM Contrib Aggregator</name>
<description>Hibernate OGM Contrib Aggregator POM</description>
<properties>
<!-- Ignite -->
<igniteVersion>2.4.0</igniteVersion>
<h2Version>1.4.195</h2Version>
<cacheApiVersion>1.0.0</cacheApiVersion>
</properties>
<modules>
<module>ignite</module>
</modules>
<!-- Only for management of test-scoped dependencies; All other dependencies (which are exposed to users) are
managed in the BOM -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.hibernate.ogm</groupId>
<artifactId>hibernate-ogm-ignite</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate.ogm</groupId>
<artifactId>hibernate-ogm-ignite-distribution</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate.ogm</groupId>
<artifactId>hibernate-ogm-ignite-integrationtests</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate.ogm</groupId>
<artifactId>hibernate-ogm-ignite-javadoc</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Ignite -->
<dependency>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-core</artifactId>
<version>${igniteVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-jta</artifactId>
<version>${igniteVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-indexing</artifactId>
<version>${igniteVersion}</version>
<exclusions>
<exclusion>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-slf4j</artifactId>
<version>${igniteVersion}</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>non-jigsaw</id>
<activation>
<!-- The versions we're using of Ehcache, Infinispan and Neo4J won't work on JDK9. Needs upgrading. -->
<jdk>1.8</jdk>
</activation>
<modules>
<!-- The WildFly modules require the other modules to be enabled too -->
<module>modules</module>
</modules>
</profile>
<profile>
<id>jigsaw</id>
<activation>
<!-- Java 9 doesn't identify itself as "1.9" but "9" -->
<jdk>9</jdk>
</activation>
<properties>
<additionalRuntimeArgLine>--add-modules java.xml.bind</additionalRuntimeArgLine>
</properties>
</profile>
<profile>
<id>integrationtest</id>
<activation>
<property>
<name>skipITs</name>
<value>!true</value>
</property>
<!-- Skip on Java 9, both because of some NoSQL stores aren't ready and because of WildFly -->
<jdk>1.8</jdk>
</activation>
<modules>
<module>integrationtest</module>
</modules>
</profile>
<profile>
<id>doc</id>
<activation>
<property>
<name>skipDocs</name>
<value>!true</value>
</property>
<jdk>1.8</jdk>
</activation>
<modules>
<module>documentation</module>
</modules>
</profile>
<profile>
<id>distro</id>
<activation>
<property>
<name>skipDistro</name>
<value>!true</value>
</property>
<jdk>1.8</jdk>
</activation>
<modules>
<module>distribution</module>
</modules>
</profile>
</profiles>
</project>