Skip to content

Commit

Permalink
v7.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jikyo committed Nov 3, 2019
1 parent 4360fcb commit 5ea506b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Note that this token filter `jikyo_romaji` assumes to work with `tokenizer: keyw

# Supported Elasticsearch versions

* [7.3.0](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.3.0)
* [7.2.1](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.2.1)
* [7.2.0](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.2.0)
* [7.1.1](https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/tag/v7.1.1)
Expand All @@ -16,7 +17,7 @@ Note that this token filter `jikyo_romaji` assumes to work with `tokenizer: keyw
# Installation

```bash
$ sudo bin/elasticsearch-plugin install https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/download/v7.2.1/analysis-jikyo-romaji-7.2.1.zip
$ sudo bin/elasticsearch-plugin install https://github.com/jikyo/elasticsearch-analysis-jikyo-romaji/releases/download/v7.3.0/analysis-jikyo-romaji-7.3.0.zip
```


Expand Down
16 changes: 11 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ buildscript {
jcenter()
}
dependencies {
classpath 'org.elasticsearch.gradle:build-tools:7.2.1'
classpath 'org.elasticsearch.gradle:build-tools:7.3.0'
}
}

apply plugin: 'elasticsearch.esplugin'

def ver = [
plugin: '7.2.1',
es: '7.2.1',
lucene: '8.0.0',
plugin: '7.3.0',
es: '7.3.0',
lucene: '8.1.0',
romaji: '0.0.4',
]

Expand All @@ -36,6 +36,12 @@ dependencies {
compile 'com.github.jikyo:romaji:' + ver.romaji
}

configurations.all {
resolutionStrategy.dependencySubstitution {
substitute project(':rest-api-spec') with module ("org.elasticsearch:rest-api-spec:${ver.es}")
}
}

dependencyLicenses.enabled = false
thirdPartyAudit.enabled = false
licenseHeaders.enabled = false
licenseHeaders.enabled = false
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include ':rest-api-spec'

0 comments on commit 5ea506b

Please sign in to comment.