This repository was archived by the owner on Oct 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed
Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff 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 ` |
Original file line number Diff line number Diff 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-
2619group = ' de.spinscale.elasticsearch.plugin'
2720version = " ${ elasticsearchVersion} .1-SNAPSHOT"
2821
@@ -35,6 +28,12 @@ licenseFile = rootProject.file('LICENSE.txt')
3528// copyright notices
3629noticeFile = 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+
3837esplugin {
3938 name ' ingest-langdetect'
4039 description ' Ingest processor doing language detection for fields'
Original file line number Diff line number Diff line change 1- elasticsearchVersion = 7.3.0
1+ elasticsearchVersion = 7.3.1
Original file line number Diff line number Diff line change 11rootProject. name = ' ingest-langdetect'
2- // remove this again after 7.3.0
3- include ' :rest-api-spec'
You can’t perform that action at this time.
0 commit comments