This repository was archived by the owner on Oct 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-13
lines changed
Expand file tree Collapse file tree 3 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ Note that Elasticsearch has native support for langdetection nowadays using the
1010
1111| ES | Command |
1212| ----- | ------- |
13+ | 7.11.1 | ` bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.11.1.1/ingest-langdetect-7.11.1.1.zip ` |
14+ | 7.11.0 | Not available Elasticsearch issues |
1315| 7.10.2 | ` bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.10.2.1/ingest-langdetect-7.10.2.1.zip ` |
1416| 7.10.1 | ` bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.10.1.1/ingest-langdetect-7.10.1.1.zip ` |
1517| 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 ` |
@@ -39,6 +41,7 @@ Note that Elasticsearch has native support for langdetection nowadays using the
3941| 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 ` |
4042| 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 ` |
4143| 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 ` |
44+ | 6.8.14 | ` bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/6.8.14.1/ingest-langdetect-6.8.14.1.zip ` |
4245| 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 ` |
4346| 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 ` |
4447| 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 ` |
Original file line number Diff line number Diff line change 11import java.nio.file.Files
22
33buildscript {
4- repositories {
5- mavenLocal()
6- mavenCentral()
7- }
8-
94 dependencies {
105 classpath " org.elasticsearch.gradle:build-tools:${ elasticsearchVersion} "
116 }
@@ -16,6 +11,11 @@ plugins {
1611 id " com.github.ben-manes.versions" version ' 0.36.0'
1712}
1813
14+ repositories {
15+ mavenLocal()
16+ mavenCentral()
17+ }
18+
1919group = ' de.spinscale.elasticsearch.plugin'
2020version = " ${ elasticsearchVersion} .1-SNAPSHOT"
2121
@@ -39,6 +39,8 @@ esplugin {
3939 noticeFile rootProject. file(' NOTICE.txt' )
4040}
4141
42+ validateNebulaPom. enabled = false
43+
4244// In this section you declare the dependencies for your production and test code
4345dependencies {
4446 compile ' com.youcruit.com.cybozu.labs:langdetect:1.1.2-20151117'
@@ -47,13 +49,6 @@ dependencies {
4749 yamlRestTestImplementation ' org.apache.logging.log4j:log4j-core:2.11.1'
4850}
4951
50- dependencyLicenses. enabled = false
51- thirdPartyAudit. enabled = false
52- validateNebulaPom. enabled = false
53- licenseHeaders. enabled = false
54- // added in 7.10 to allow for build
55- loggerUsageCheck. enabled = false
56-
5752// ignore javadoc warnings for now
5853tasks. withType(Javadoc ) {
5954 options. addStringOption(' Xdoclint:none' , ' -quiet' )
Original file line number Diff line number Diff line change 1- elasticsearchVersion = 7.10.2
1+ elasticsearchVersion = 7.11.1
You can’t perform that action at this time.
0 commit comments