Skip to content

Commit f9a2a7d

Browse files
authored
Merge pull request #104 from cybozu/renovate/lucence-and-elasticsearch
fix(deps): update lucence & elasticsearch
2 parents c153a22 + c122749 commit f9a2a7d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ targetCompatibility = 17
88

99
apply plugin: 'distribution'
1010

11-
def ElasticsearchVersion = '8.7.1'
12-
def LuceneVersion = '9.5.0'
11+
def ElasticsearchVersion = '8.8.0'
12+
def LuceneVersion = '9.6.0'
1313
version = '0.0.1'
1414

1515
dependencies {
@@ -25,6 +25,11 @@ dependencies {
2525
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.24.2'
2626
testImplementation group: 'org.apache.lucene', name: 'lucene-test-framework', version: LuceneVersion
2727
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.24.2'
28+
29+
// https://github.com/elastic/elasticsearch/issues/96360
30+
configurations.all {
31+
exclude group: 'org.elasticsearch', module: 'elasticsearch-preallocate'
32+
}
2833
}
2934

3035
test {

src/main/dist/plugin-descriptor.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ classname=com.github.yokotaso.elasticsearch.plugin.analysis.classic.ckj.ClassicC
3535
java.version=17
3636
#
3737
# 'elasticsearch.version': version of elasticsearch compiled against
38-
elasticsearch.version=8.7.1
38+
elasticsearch.version=8.8.0
3939
### optional elements for plugins:
4040
#
4141
# 'extended.plugins': other plugins this plugin extends through SPI

0 commit comments

Comments
 (0)