File tree Expand file tree Collapse file tree 1 file changed +22
-13
lines changed Expand file tree Collapse file tree 1 file changed +22
-13
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Various utilities enhancing our Elasticsearch installation.
4
4
5
+ ## Release
6
+
7
+ To create a release, just tag the commit with version number. The built files are available
8
+ in the [ release] ( https://github.com/monitora-media/es-utils/releases/latest ) .
9
+
10
+ git tag 1.1.0
11
+ git push --tags
12
+
5
13
## Build
6
14
7
15
./gradlew build -Pelasticsearch.version=8.5.3
@@ -21,20 +29,21 @@ Index settings:
21
29
22
30
``` json
23
31
{
24
- "analysis" :
25
- "filter" : {
26
- "lowercase" : {
27
- "type" : " monitora_lowercase" ,
28
- "preserve_original" : " true"
29
- }
30
- "analyzer" : {
31
- "index" : {
32
- "type" : " custom" ,
33
- "filter" : [
34
- " lowercase"
35
- ]
36
- }
32
+ "analysis" : {
33
+ "filter" : {
34
+ "lowercase" : {
35
+ "type" : " monitora_lowercase" ,
36
+ "preserve_original" : " true"
37
+ },
38
+ "analyzer" : {
39
+ "index" : {
40
+ "type" : " custom" ,
41
+ "filter" : [
42
+ " lowercase"
43
+ ]
37
44
}
45
+ }
38
46
}
47
+ }
39
48
}
40
49
```
You can’t perform that action at this time.
0 commit comments