Skip to content

Commit da7a146

Browse files
committed
[ALIEN-3553] upgrade to JDK 15 & ES 6.8.13
1 parent 23d11a8 commit da7a146

File tree

3 files changed

+44
-26
lines changed

3 files changed

+44
-26
lines changed

elasticsearch-annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.alien4cloud</groupId>
66
<artifactId>elasticsearch-mapping-parent</artifactId>
7-
<version>6.6.2-2-SNAPSHOT</version>
7+
<version>6.8.13-1-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>elasticsearch-annotations</artifactId>

elasticsearch-mapping/pom.xml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,22 @@
44
<parent>
55
<groupId>org.alien4cloud</groupId>
66
<artifactId>elasticsearch-mapping-parent</artifactId>
7-
<version>6.6.2-2-SNAPSHOT</version>
7+
<version>6.8.13-1-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>elasticsearch-mapping</artifactId>
1111
<name>Elastic search mapping.</name>
1212
<description>Object mapping for elastic search.</description>
1313

14+
<properties>
15+
<elasticsearch.analysis-common.version>6.8.12</elasticsearch.analysis-common.version>
16+
</properties>
17+
1418
<dependencies>
19+
<dependency>
20+
<groupId>javax.annotation</groupId>
21+
<artifactId>javax.annotation-api</artifactId>
22+
</dependency>
1523
<dependency>
1624
<groupId>org.elasticsearch</groupId>
1725
<artifactId>elasticsearch</artifactId>
@@ -24,11 +32,11 @@
2432
<groupId>org.elasticsearch.plugin</groupId>
2533
<artifactId>transport-netty4-client</artifactId>
2634
</dependency>
27-
<dependency>
28-
<groupId>org.codelibs.elasticsearch.module</groupId>
29-
<artifactId>analysis-common</artifactId>
30-
<version>${elasticsearch.version}</version>
31-
</dependency>
35+
<dependency>
36+
<groupId>org.codelibs.elasticsearch.module</groupId>
37+
<artifactId>analysis-common</artifactId>
38+
<version>${elasticsearch.analysis-common.version}</version>
39+
</dependency>
3240
<dependency>
3341
<groupId>com.floragunn</groupId>
3442
<artifactId>search-guard-ssl</artifactId>

pom.xml

Lines changed: 29 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,31 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.alien4cloud</groupId>
55
<artifactId>elasticsearch-mapping-parent</artifactId>
6-
<version>6.6.2-2-SNAPSHOT</version>
6+
<version>6.8.13-1-SNAPSHOT</version>
77
<packaging>pom</packaging>
88

99
<name>Elastic search mapping parent</name>
1010
<description>An object mapping framework for Elastic Search.</description>
1111

1212
<properties>
13-
<elasticsearch.version>6.6.2</elasticsearch.version>
14-
<search-guard.version>6.6.2-25.6</search-guard.version>
13+
<elasticsearch.version>6.8.13</elasticsearch.version>
14+
<search-guard.version>6.8.6-25.7</search-guard.version>
1515

1616
<jackson.version>2.9.3</jackson.version>
1717
<spring.version>4.3.2.RELEASE</spring.version>
1818
<commons-lang.version>3.5</commons-lang.version>
1919
<commons-beanutils.version>1.9.3</commons-beanutils.version>
2020
<junit.version>4.12</junit.version>
2121
<guava.version>19.0</guava.version>
22-
<lombok.version>1.16.18</lombok.version>
23-
<!-- Logging -->
24-
<log4j.version>2.8.2</log4j.version>
25-
<slf4j.version>1.7.24</slf4j.version>
22+
<lombok.version>1.18.16</lombok.version>
23+
<!-- Logging -->
24+
<log4j.version>2.8.2</log4j.version>
25+
<slf4j.version>1.7.24</slf4j.version>
2626

27-
<java.version>1.8</java.version>
28-
<maven.compiler.version>2.3.2</maven.compiler.version>
27+
<java.version>15</java.version>
28+
<javax.annotation.version>1.3.2</javax.annotation.version>
29+
30+
<maven.compiler.version>3.8.1</maven.compiler.version>
2931
</properties>
3032

3133
<modules>
@@ -147,7 +149,15 @@
147149
<artifactId>slf4j-ext</artifactId>
148150
<version>${slf4j.version}</version>
149151
</dependency>
150-
</dependencies>
152+
153+
<dependency>
154+
<groupId>javax.annotation</groupId>
155+
<artifactId>javax.annotation-api</artifactId>
156+
<version>${javax.annotation.version}</version>
157+
</dependency>
158+
159+
160+
</dependencies>
151161
</dependencyManagement>
152162

153163
<developers>
@@ -157,14 +167,14 @@
157167
</developers>
158168

159169
<distributionManagement>
160-
<repository>
161-
<id>repo.opensource.fastconnect.org</id>
162-
<url>https://fastconnect.org/maven/content/repositories/opensource</url>
163-
</repository>
164-
<snapshotRepository>
165-
<id>repo.opensource.snapshot.fastconnect.org</id>
166-
<url>https://fastconnect.org/maven/content/repositories/opensource-snapshot</url>
167-
</snapshotRepository>
170+
<repository>
171+
<id>pdl-releases</id>
172+
<url>https://www.portaildulibre.fr/nexus/repository/opensource-releases</url>
173+
</repository>
174+
<snapshotRepository>
175+
<id>pdl-snapshots</id>
176+
<url>https://www.portaildulibre.fr/nexus/repository/opensource-snapshots</url>
177+
</snapshotRepository>
168178
</distributionManagement>
169179

170180
<build>
@@ -181,7 +191,7 @@
181191
<plugin>
182192
<groupId>org.apache.maven.plugins</groupId>
183193
<artifactId>maven-surefire-plugin</artifactId>
184-
<version>2.20.1</version>
194+
<version>2.22.1</version>
185195
<!-- -Dtests.security.manager=false is needed otherwise the ESTestCase fails to initialize -->
186196
<configuration>
187197
<argLine>-Xms128m -Xmx512m -Dtests.security.manager=false</argLine>

0 commit comments

Comments
 (0)