From 7affad5588ef2108b6afea20fa4c4c42b94c1ec0 Mon Sep 17 00:00:00 2001 From: Alexander Reelsen Date: Thu, 2 Sep 2021 10:35:40 +0200 Subject: [PATCH] Update to Elasticsearch 7.14.1 --- README.md | 1 + build.gradle | 9 +-------- gradle.properties | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index b335414..e0d9288 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.14.1 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.14.1.1/ingest-opennlp-7.14.1.1.zip` | | 7.14.0 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.14.0.1/ingest-opennlp-7.14.0.1.zip` | | 7.13.4 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.13.4.1/ingest-opennlp-7.13.4.1.zip` | | 7.13.3 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.13.3.1/ingest-opennlp-7.13.3.1.zip` | diff --git a/build.gradle b/build.gradle index 9556c48..be9b6f9 100644 --- a/build.gradle +++ b/build.gradle @@ -63,6 +63,7 @@ githubRelease.doFirst { token = System.getProperty('GITHUB_TOKEN') tagName = currentVersion assets = [ filename ] + targetCommitish = 'main' } } @@ -166,14 +167,6 @@ dependencies { restTestSpecs "org.elasticsearch:rest-api-spec:$elasticsearchVersion" } -// remove when 7.14.1 is released -tasks.withType(Test).configureEach { testTask -> - testTask.systemProperties 'gradle.dist.lib': "${gradle.gradleHomeDir}/lib", - 'gradle.worker.jar': "${gradle.gradleUserHomeDir}/caches/${gradle.gradleVersion}/workerMain/gradle-worker.jar", - 'tests.gradle': 'true', - 'tests.task': testTask.path -} - // This will be available in 7.15 in build tools and not manually declared. public class SystemPropertyCommandLineArgumentProvider implements CommandLineArgumentProvider { private final Map systemProperties = new LinkedHashMap<>(); diff --git a/gradle.properties b/gradle.properties index 04ba08f..7727322 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -elasticsearchVersion = 7.14.0 +elasticsearchVersion = 7.14.1