Skip to content

Commit 7f054a4

Browse files
committed
Dependencies: Update to Elasticsearch 6.3.2
1 parent 3f0ee3d commit 7f054a4

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This plugin is also intended to show you, that using gradle as a build system ma
1010

1111
| ES | Command |
1212
| ----- | ------- |
13+
| 6.3.2 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/6.3.2.1/ingest-opennlp-6.3.2.1.zip` |
1314
| 6.3.1 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/6.3.1.1/ingest-opennlp-6.3.1.1.zip` |
1415
| 6.3.0 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/6.3.0.1/ingest-opennlp-6.3.0.1.zip` |
1516
| 6.2.4 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/6.2.4.1/ingest-opennlp-6.2.4.1.zip` |
@@ -91,20 +92,20 @@ You can configure own models per field, the setting for this is prefixed `ingest
9192
| ingest.opennlp.model.file.person | Configure the file for person entity recognition for the field person |
9293
| ingest.opennlp.model.file.WHATEVER | Configure the file for WHATEVER entity recognition for the field WHATEVER |
9394

94-
## Setup
95+
## Development setup & running tests
9596

9697
In order to install this plugin, you need to create a zip distribution first by running
9798

9899
```bash
99-
gradle clean check
100+
./gradlew clean check
100101
```
101102

102103
This will produce a zip file in `build/distributions`. As part of the build, the models are packaged into the zip file, but need to be downloaded before. There is a special task in the `build.gradle` which is downloading the models, in case they dont exist.
103104

104105
After building the zip file, you can install it like this
105106

106107
```bash
107-
bin/plugin install file:///path/to/elasticsearch-ingest-opennlp/build/distribution/ingest-opennlp-0.0.1-SNAPSHOT.zip
108+
bin/plugin install file:///path/to/elasticsearch-ingest-opennlp/build/distribution/ingest-opennlp-X.Y.Z-SNAPSHOT.zip
108109
```
109110

110111
There is no need to configure anything, as the models art part of the zip file.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath "org.elasticsearch.gradle:build-tools:6.3.1"
11+
classpath "org.elasticsearch.gradle:build-tools:6.3.2"
1212
}
1313
}
1414

@@ -20,7 +20,7 @@ plugins {
2020
import de.undercouch.gradle.tasks.download.Download
2121

2222
group = 'de.spinscale.elasticsearch.plugin.ingest'
23-
version = '6.3.1.1-SNAPSHOT'
23+
version = '6.3.2.1-SNAPSHOT'
2424

2525
apply plugin: 'java'
2626
apply plugin: 'idea'

0 commit comments

Comments
 (0)