Skip to content

Commit

Permalink
Update to Elasticsearch 8.0.0-alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
spinscale committed Sep 27, 2021
1 parent d66762b commit a5f3d1d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This plugin is also intended to show you, that using gradle as a build system ma

| ES | Command |
| ----- | ------- |
| 8.0.0-alpha2 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/8.0.0-alpha2.1/ingest-opennlp-8.0.0-alpha2.1.zip` |
| 7.14.2 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.14.2.1/ingest-opennlp-7.14.2.1.zip` |
| 7.14.1 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.14.1.1/ingest-opennlp-7.14.1.1.zip` |
| 7.14.0 | `bin/elasticsearch-plugin install https://github.com/spinscale/elasticsearch-ingest-opennlp/releases/download/7.14.0.1/ingest-opennlp-7.14.0.1.zip` |
Expand Down
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ esplugin {
classname = 'de.spinscale.elasticsearch.ingest.opennlp.IngestOpenNlpPlugin'
}

// remove me after alpha-2 release
configurations {
resolveableCompileOnly {
exclude(group: 'org.elasticsearch', module: 'elasticsearch-lz4')
}
implementation {
exclude(group: 'org.elasticsearch', module: 'elasticsearch-lz4')
}
}

githubRelease.doFirst {
if (!System.getProperty('GITHUB_TOKEN', '')) {
throw new Exception('Missing property GITHUB_TOKEN')
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
elasticsearchVersion = 7.14.2
elasticsearchVersion = 8.0.0-alpha2

0 comments on commit a5f3d1d

Please sign in to comment.