Skip to content

Commit ca5d343

Browse files
author
tomoya yokota
authored
Merge pull request #72 from cybozu/dist-version
Update CI environment using JDK17, update plugin elasticsearch version
2 parents a5e3628 + 1b80848 commit ca5d343

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-20.04
77
strategy:
88
matrix:
9-
jdk: [ '11', '17' ]
9+
jdk: [ '17' ]
1010
name: CI using JDK ${{ matrix.jdk }}
1111
steps:
1212
- uses: actions/checkout@v3

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ plugins {
33
id "com.diffplug.spotless" version "6.8.0"
44
}
55

6-
sourceCompatibility = 11
7-
targetCompatibility = 11
6+
sourceCompatibility = 17
7+
targetCompatibility = 17
88

99
apply plugin: 'distribution'
1010

src/main/dist/plugin-descriptor.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ classname=com.github.yokotaso.elasticsearch.plugin.analysis.classic.ckj.ClassicC
3232
# use the system property java.specification.version
3333
# version string must be a sequence of nonnegative decimal integers
3434
# separated by "."'s and may have leading zeros
35-
java.version=11
35+
java.version=17
3636
#
3737
# 'elasticsearch.version': version of elasticsearch compiled against
38-
elasticsearch.version=7.15.2
38+
elasticsearch.version=7.17.5
3939
### optional elements for plugins:
4040
#
4141
# 'extended.plugins': other plugins this plugin extends through SPI

0 commit comments

Comments
 (0)