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 +12
-3
lines changed
src/yamlRestTest/resources/rest-api-spec/test/ingest-langdetect Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Note that Elasticsearch has native support for langdetection nowadays using the
10
10
11
11
| ES | Command |
12
12
| ----- | ------- |
13
+ | 8.0.0-alpha2 | ` bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/8.0.0-alpha2.1/ingest-langdetect-8.0.0-alpha2.1.zip ` |
13
14
| 7.14.2 | ` bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.14.2.1/ingest-langdetect-7.14.2.1.zip ` |
14
15
| 7.14.1 | ` bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.14.1.1/ingest-langdetect-7.14.1.1.zip ` |
15
16
| 7.14.0 | ` bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-langdetect/releases/download/7.14.0.1/ingest-langdetect-7.14.0.1.zip ` |
Original file line number Diff line number Diff line change @@ -40,6 +40,16 @@ esplugin {
40
40
noticeFile = rootProject. file(' NOTICE.txt' )
41
41
}
42
42
43
+ // remove me after alpha-2 release
44
+ configurations {
45
+ resolveableCompileOnly {
46
+ exclude(group : ' org.elasticsearch' , module : ' elasticsearch-lz4' )
47
+ }
48
+ implementation {
49
+ exclude(group : ' org.elasticsearch' , module : ' elasticsearch-lz4' )
50
+ }
51
+ }
52
+
43
53
// In this section you declare the dependencies for your production and test code
44
54
dependencies {
45
55
implementation ' com.youcruit.com.cybozu.labs:langdetect:1.1.2-20151117'
Original file line number Diff line number Diff line change 1
- elasticsearchVersion = 7.14.2
1
+ elasticsearchVersion = 8.0.0-alpha2
Original file line number Diff line number Diff line change 20
20
- do :
21
21
index :
22
22
index : test
23
- type : test
24
23
id : 1
25
24
pipeline : " my_pipeline"
26
25
body : { field1: "This is hopefully an english text" }
27
26
28
27
- do :
29
28
get :
30
29
index : test
31
- type : test
32
30
id : 1
33
31
- match : { _source.field1: "This is hopefully an english text" }
34
32
- match : { _source.field1_language: "en" }
You can’t perform that action at this time.
0 commit comments