From 2be5f740017fdd09a3621c1a569fc973b2357897 Mon Sep 17 00:00:00 2001 From: Alexander Reelsen Date: Thu, 1 Aug 2019 20:47:47 +0200 Subject: [PATCH] Upgrade to 7.3.0 --- README.md | 1 + build.gradle | 7 +++++++ gradle.properties | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- settings.gradle | 2 ++ 5 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dc2dbf0..52e8680 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ This plugin is also intended to show you, that using gradle as a build system ma | ES | Command | | ----- | ------- | +| 7.3.0 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.3.0.1/ingest-opennlp-7.3.0.1.zip` | | 7.2.1 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.2.1.1/ingest-opennlp-7.2.1.1.zip` | | 7.2.0 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.2.0.1/ingest-opennlp-7.2.0.1.zip` | | 7.1.1 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.1.1.1/ingest-opennlp-7.1.1.1.zip` | diff --git a/build.gradle b/build.gradle index fc772c7..60c2bda 100644 --- a/build.gradle +++ b/build.gradle @@ -17,6 +17,13 @@ plugins { id "co.riiid.gradle" version "0.4.2" } +// remove this again after 7.3.0 +configurations.all { + resolutionStrategy.dependencySubstitution { + substitute project(':rest-api-spec') with module ("org.elasticsearch:rest-api-spec:${elasticsearchVersion}") + } +} + import de.undercouch.gradle.tasks.download.Download group = 'de.spinscale.elasticsearch.plugin.ingest' diff --git a/gradle.properties b/gradle.properties index 4425b13..0412eb9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -elasticsearchVersion = 7.2.1 +elasticsearchVersion = 7.3.0 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index f4d7b2b..4b7e1f3 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/settings.gradle b/settings.gradle index 314405b..3f535d1 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1,3 @@ rootProject.name = 'ingest-opennlp' +// remove this again after 7.3.0 +include ':rest-api-spec'