Skip to content

Commit

Permalink
Merge pull request #45 from allegro/v8.8.0
Browse files Browse the repository at this point in the history
add support for elasticsearch 8.8.0
  • Loading branch information
allepbo authored May 30, 2023
2 parents 9522498 + b0b9ca9 commit 506e49a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Originally created by https://github.com/monterail/elasticsearch-analysis-morfol
## Install

```
bin/elasticsearch-plugin install pl.allegro.tech.elasticsearch.plugin:elasticsearch-analysis-morfologik:8.7.0
bin/elasticsearch-plugin install pl.allegro.tech.elasticsearch.plugin:elasticsearch-analysis-morfologik:8.8.0
```

*tip: select proper plugin version, should be the same as elasticsearch version*
Expand Down Expand Up @@ -75,6 +75,7 @@ Response:
All ready to install plugins are deployed to [maven central](https://repo1.maven.org/maven2/pl/allegro/tech/elasticsearch/plugin/elasticsearch-analysis-morfologik/).

### Elasticsearch 8.x
- 8.8.x (8.8.0)
- 8.7.x (8.7.0, 8.7.1)
- 8.6.x (8.6.0, 8.6.1, 8.6.2)
- 8.5.x (8.5.0, 8.5.1, 8.5.2, 8.5.3)
Expand Down
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
pluginClassname = 'pl.allegro.tech.elasticsearch.plugin.analysis.morfologik.AnalysisMorfologikPlugin'
pluginDescription = 'Morfologik Polish Lemmatizer plugin for Elasticsearch'
versions = [
'elasticsearch' : '8.7.1',
'elasticsearch' : '8.8.0',
'lucene' : '8.11.2',
'log4j' : '2.17.1',
'spock' : '2.3-groovy-3.0',
Expand Down Expand Up @@ -46,7 +46,9 @@ configurations {
}

dependencies {
implementation group: 'org.elasticsearch', name: 'elasticsearch', version: versions.elasticsearch
implementation (group: 'org.elasticsearch', name: 'elasticsearch', version: versions.elasticsearch) {
exclude group: 'org.elasticsearch', module: 'elasticsearch-preallocate'
}
implementation(group: 'org.apache.lucene', name: 'lucene-analyzers-morfologik', version: versions.lucene) {
exclude group: 'ua.net.nlp'
}
Expand Down

0 comments on commit 506e49a

Please sign in to comment.