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
6
6
7
7
| ES | Command |
8
8
| ----- | ------- |
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 ` |
9
10
| 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 ` |
10
11
| 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 ` |
11
12
| 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 {
16
16
id " co.riiid.gradle" version " 0.4.2"
17
17
}
18
18
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
-
26
19
group = ' de.spinscale.elasticsearch.plugin'
27
20
version = " ${ elasticsearchVersion} .1-SNAPSHOT"
28
21
@@ -35,6 +28,12 @@ licenseFile = rootProject.file('LICENSE.txt')
35
28
// copyright notices
36
29
noticeFile = rootProject. file(' NOTICE.txt' )
37
30
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
+
38
37
esplugin {
39
38
name ' ingest-langdetect'
40
39
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 1
1
rootProject. 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