Skip to content
This repository was archived by the owner on Oct 29, 2023. It is now read-only.

Commit 96527b6

Browse files
committed
Upgrade to Elasticsearch 7.3.1
1 parent de9665a commit 96527b6

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Uses the [langdetect](https://github.com/YouCruit/language-detection/) plugin to
66

77
| ES | Command |
88
| ----- | ------- |
9+
| 7.3.1 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.3.1.1/ingest-langdetect-7.3.1.1.zip` |
910
| 7.3.0 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.3.0.1/ingest-langdetect-7.3.0.1.zip` |
1011
| 7.2.1 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.2.1.1/ingest-langdetect-7.2.1.1.zip` |
1112
| 7.2.0 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.2.0.1/ingest-langdetect-7.2.0.1.zip` |

build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@ plugins {
1616
id "co.riiid.gradle" version "0.4.2"
1717
}
1818

19-
// remove this again after 7.3.0
20-
configurations.all {
21-
resolutionStrategy.dependencySubstitution {
22-
substitute project(':rest-api-spec') with module ("org.elasticsearch:rest-api-spec:${elasticsearchVersion}")
23-
}
24-
}
25-
2619
group = 'de.spinscale.elasticsearch.plugin'
2720
version = "${elasticsearchVersion}.1-SNAPSHOT"
2821

@@ -35,6 +28,12 @@ licenseFile = rootProject.file('LICENSE.txt')
3528
// copyright notices
3629
noticeFile = rootProject.file('NOTICE.txt')
3730

31+
// remove this again after 7.3.1
32+
configurations.restSpec.withDependencies { dependencies ->
33+
dependencies.clear()
34+
dependencies.add(project.dependencies.create("org.elasticsearch:rest-api-spec:7.3.1"))
35+
}
36+
3837
esplugin {
3938
name 'ingest-langdetect'
4039
description 'Ingest processor doing language detection for fields'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
elasticsearchVersion = 7.3.0
1+
elasticsearchVersion = 7.3.1

settings.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
rootProject.name = 'ingest-langdetect'
2-
// remove this again after 7.3.0
3-
include ':rest-api-spec'

0 commit comments

Comments
 (0)