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

Commit 3784c0f

Browse files
committed
Upgrade to Elasticsearch 7.10
1 parent 026af04 commit 3784c0f

File tree

7 files changed

+10
-5
lines changed

7 files changed

+10
-5
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Note that Elasticsearch has native support for langdetection nowadays using the
1010

1111
| ES | Command |
1212
| ----- | ------- |
13+
| 7.10.0 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.10.0.1/ingest-langdetect-7.10.0.1.zip` |
1314
| 7.9.3 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.9.3.1/ingest-langdetect-7.9.3.1.zip` |
1415
| 7.9.2 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.9.2.1/ingest-langdetect-7.9.2.1.zip` |
1516
| 7.9.1 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.9.1.1/ingest-langdetect-7.9.1.1.zip` |
@@ -36,6 +37,7 @@ Note that Elasticsearch has native support for langdetection nowadays using the
3637
| 7.1.0 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.1.0.1/ingest-langdetect-7.1.0.1.zip` |
3738
| 7.0.1 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.0.1.1/ingest-langdetect-7.0.1.1.zip` |
3839
| 7.0.0 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.0.0.1/ingest-langdetect-7.0.0.1.zip` |
40+
| 6.8.13 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/6.8.13.1/ingest-langdetect-6.8.13.1.zip` |
3941
| 6.8.12 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/6.8.12.1/ingest-langdetect-6.8.12.1.zip` |
4042
| 6.8.11 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/6.8.11.1/ingest-langdetect-6.8.11.1.zip` |
4143
| 6.8.10 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/6.8.10.1/ingest-langdetect-6.8.10.1.zip` |

build.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414

1515
plugins {
1616
id "co.riiid.gradle" version "0.4.2"
17-
id "com.github.ben-manes.versions" version '0.33.0'
17+
id "com.github.ben-manes.versions" version '0.36.0'
1818
}
1919

2020
group = 'de.spinscale.elasticsearch.plugin'
@@ -23,8 +23,7 @@ version = "${elasticsearchVersion}.1-SNAPSHOT"
2323
apply plugin: 'java'
2424
apply plugin: 'idea'
2525
apply plugin: 'elasticsearch.esplugin'
26-
apply plugin: 'elasticsearch.testclusters'
27-
apply plugin: 'elasticsearch.rest-resources'
26+
apply plugin: 'elasticsearch.yaml-rest-test'
2827

2928
// license of this project
3029
licenseFile = rootProject.file('LICENSE.txt')
@@ -45,12 +44,16 @@ esplugin {
4544
dependencies {
4645
compile 'com.youcruit.com.cybozu.labs:langdetect:1.1.2-20151117'
4746
compile 'net.arnx:jsonic:1.3.10'
47+
// the yaml tests require a log4j2 dependency, otherwise a dependency is thrown on startup
48+
yamlRestTestImplementation 'org.apache.logging.log4j:log4j-core:2.11.1'
4849
}
4950

5051
dependencyLicenses.enabled = false
5152
thirdPartyAudit.enabled = false
5253
validateNebulaPom.enabled = false
5354
licenseHeaders.enabled = false
55+
// added in 7.10 to allow for build
56+
loggerUsageCheck.enabled = false
5457

5558
// ignore javadoc warnings for now
5659
tasks.withType(Javadoc) {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
elasticsearchVersion = 7.9.3
1+
elasticsearchVersion = 7.10.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)