diff --git a/.travis.yml b/.travis.yml index c2ebba7..0e06bd6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ sudo: true language: java -jdk: oraclejdk8 +jdk: openjdk11 cache: directories: @@ -17,6 +17,6 @@ install: - if [[ $TRAVIS_PULL_REQUEST = false ]] && [[ $TRAVIS_BRANCH = master ]] || [[ $TRAVIS_TAG = v* ]]; then GOAL=deploy; else GOAL=install; fi - if [[ $TRAVIS_TAG = v* ]]; then ADDITIONAL_PROFILES=release; mvn -q -U org.seedstack:seedstack-maven-plugin:release; else ADDITIONAL_PROFILES=snapshots; fi -script: mvn -q -U -T 2 -Pbuild-number,compatibility,bintray,javadoc,$ADDITIONAL_PROFILES $GOAL jacoco:report +script: mvn -q -U -T 2 -Pbuild-number,compatibility,bintray,javadoc,v2,$ADDITIONAL_PROFILES $GOAL jacoco:report after_success: mvn -q coveralls:report -DrepoToken=$COVERALLS_TOKEN diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ba910c..6a917e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 3.1.0 (2020-10-29) + +* [chg] Update for SeedStack 20.7 +* [chg] Compatibility with transport client from elasticsearch v2 to v7 + # Version 3.0.0 (2017-01-13) * [brk] Update to new configuration system. diff --git a/README.md b/README.md index b1292f2..c335790 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,18 @@ ElasticSearch official persistence integration for SeedStack. +This addon provides a transport client compatible with elasticsearch from v2 to v7. + +It has been tested against following elasticsearch servers: + +- 2.4.6 +- 5.6.2 +- 6.8.10 +- 7.9.1 + +Profiles have added in order to help build the addon with various elasticsearch jar versions. +By default, Profile v2 is used in travis build configuration. + # Copyright and license This source code is copyrighted by [The SeedStack Authors](https://github.com/seedstack/seedstack/blob/master/AUTHORS) and diff --git a/pom.xml b/pom.xml index 9d6aa94..e585d18 100644 --- a/pom.xml +++ b/pom.xml @@ -1,6 +1,6 @@