Skip to content

Commit 844fe70

Browse files
committed
Update for SeedStack 20.7
License management travis: openjdk11
1 parent 023d49c commit 844fe70

12 files changed

Lines changed: 44 additions & 25 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ sudo: true
22

33
language: java
44

5-
jdk: oraclejdk8
5+
jdk: openjdk11
66

77
cache:
88
directories:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 3.1.0 (2020-10-01)
2+
3+
* [chg] Update for SeedStack 20.7
4+
15
# Version 3.0.0 (2017-01-13)
26

37
* [brk] Update to new configuration system.

pom.xml

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
3-
Copyright (c) 2013-2016, The SeedStack authors <http://seedstack.org>
3+
Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
44
55
This Source Code Form is subject to the terms of the Mozilla Public
66
License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -14,19 +14,18 @@
1414
<parent>
1515
<groupId>org.seedstack.poms</groupId>
1616
<artifactId>parent-internal</artifactId>
17-
<version>3.0.0</version>
17+
<version>3.4.9</version>
1818
</parent>
1919

2020
<groupId>org.seedstack.addons.elasticsearch</groupId>
2121
<artifactId>elasticsearch</artifactId>
22-
<version>3.0.0-SNAPSHOT</version>
22+
<version>3.1.0-SNAPSHOT</version>
2323

2424
<properties>
25-
<seed.version>3.0.1</seed.version>
26-
25+
<seed.version>3.10.0</seed.version>
2726
<compatibility.skip>true</compatibility.skip>
28-
2927
<bintray.package>elasticsearch-addon</bintray.package>
28+
<hibernate-validator.version>6.1.5.Final</hibernate-validator.version>
3029
</properties>
3130

3231
<build>
@@ -51,6 +50,7 @@
5150
<includedLicense>IGNORED_LICENSE</includedLicense>
5251
</includedLicenses>
5352
<licenseMerges>
53+
<licenseMerge>Apache 2|Apache 2.0</licenseMerge>
5454
<licenseMerge>Apache 2|Apache License, Version 2.0</licenseMerge>
5555
<licenseMerge>Apache 2|The Apache Software License, Version 2.0</licenseMerge>
5656
<licenseMerge>Apache 2|Apache License 2.0</licenseMerge>
@@ -59,6 +59,7 @@
5959
<licenseMerge>BSD|The New BSD License</licenseMerge>
6060
<licenseMerge>CDDL|CDDL + GPLv2 with classpath exception</licenseMerge>
6161
<licenseMerge>LGPL 3.0|GNU Lesser Public License</licenseMerge>
62+
<licenseMerge>MIT License|The MIT License</licenseMerge>
6263
<licenseMerge>IGNORED_LICENSE|MPL 1.1</licenseMerge>
6364
</licenseMerges>
6465
</configuration>
@@ -80,6 +81,12 @@
8081
<scope>provided</scope>
8182
</dependency>
8283

84+
<dependency>
85+
<groupId>org.hibernate</groupId>
86+
<artifactId>hibernate-validator</artifactId>
87+
<version>${hibernate-validator.version}</version>
88+
</dependency>
89+
8390
<dependency>
8491
<groupId>org.skyscreamer</groupId>
8592
<artifactId>jsonassert</artifactId>
@@ -88,10 +95,16 @@
8895
</dependency>
8996
<dependency>
9097
<groupId>org.seedstack.seed</groupId>
91-
<artifactId>seed-testing</artifactId>
98+
<artifactId>seed-testing-junit4</artifactId>
9299
<version>${seed.version}</version>
93100
<scope>test</scope>
94101
</dependency>
102+
<dependency>
103+
<groupId>org.assertj</groupId>
104+
<artifactId>assertj-core</artifactId>
105+
<version>${assertj.version}</version>
106+
<scope>test</scope>
107+
</dependency>
95108
<dependency>
96109
<groupId>ch.qos.logback</groupId>
97110
<artifactId>logback-classic</artifactId>

src/main/java/org/seedstack/elasticsearch/ElasticSearchConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/**
2-
* Copyright (c) 2013-2016, The SeedStack authors <http://seedstack.org>
1+
/*
2+
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/java/org/seedstack/elasticsearch/internal/ElasticSearchClientProxy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/**
2-
* Copyright (c) 2013-2016, The SeedStack authors <http://seedstack.org>
1+
/*
2+
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/java/org/seedstack/elasticsearch/internal/ElasticSearchErrorCode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/**
2-
* Copyright (c) 2013-2016, The SeedStack authors <http://seedstack.org>
1+
/*
2+
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/java/org/seedstack/elasticsearch/internal/ElasticSearchModule.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/**
2-
* Copyright (c) 2013-2016, The SeedStack authors <http://seedstack.org>
1+
/*
2+
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/java/org/seedstack/elasticsearch/internal/ElasticSearchPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/**
2-
* Copyright (c) 2013-2016, The SeedStack authors <http://seedstack.org>
1+
/*
2+
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/resources/org/seedstack/elasticsearch/ElasticSearchConfig.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2013-2016, The SeedStack authors <http://seedstack.org>
2+
# Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
33
#
44
# This Source Code Form is subject to the terms of the Mozilla Public
55
# License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/resources/org/seedstack/elasticsearch/internal/ElasticSearchErrorCode.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2013-2016, The SeedStack authors <http://seedstack.org>
2+
# Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
33
#
44
# This Source Code Form is subject to the terms of the Mozilla Public
55
# License, v. 2.0. If a copy of the MPL was not distributed with this

0 commit comments

Comments
 (0)