Skip to content

Commit d37edb7

Browse files
committed
JDK 19.
1 parent f1e411f commit d37edb7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
# https://hub.docker.com/r/circleci/openjdk/
4545
# adoptopenjdk/openjdk15
4646
# https://circleci.com/developer/images/image/cimg/openjdk
47-
- image: cimg/openjdk:18.0.2
47+
- image: cimg/openjdk:19.0.1
4848
environment:
4949
CC_TEST_REPORTER_ID: $CC_TEST_REPORTER_ID
5050
COVERALLS_REPO_TOKEN: $COVERALLS_REPO_TOKEN

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-java@v3
2020
with:
2121
distribution: 'temurin'
22-
java-version: '18.0.0'
22+
java-version: '19.0.0'
2323
architecture: x64
2424
- run: java -version
2525
- name: Make java-code

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
include:
99
- stage: build-test
1010
language: java
11-
jdk: openjdk18
11+
jdk: openjdk19
1212
before_install:
1313
- chmod +x gradlew
1414
script:

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ image:
1010
- Visual Studio 2019
1111
- Ubuntu
1212

13-
stack: node 16, jdk 18, python 3.10 x64
13+
stack: node 16, jdk 19, python 3.10 x64
1414

1515
install:
1616
- cmd: choco install openjdk
1717
#- cmd: "SET JAVA_HOME=C:\\Program Files\\Java\\jdk16"
18-
- cmd: "SET JAVA_HOME=C:\\Program Files\\OpenJDK\\jdk-18"
18+
- cmd: "SET JAVA_HOME=C:\\Program Files\\OpenJDK\\jdk-19"
1919
- cmd: "SET PATH=%JAVA_HOME%\\bin;%path%"
2020
- cmd: "SET PYTHON3=C:\\Python310-x64"
2121
- cmd: "SET PATH=%PYTHON3%;%PYTHON3%\\Scripts;%path%"

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jacocoTestCoverageVerification {
4545
}
4646
}
4747

48-
sourceCompatibility = JavaVersion.VERSION_18
49-
targetCompatibility = JavaVersion.VERSION_18
48+
sourceCompatibility = JavaVersion.VERSION_19
49+
targetCompatibility = JavaVersion.VERSION_19
5050

5151
compileJava {
5252
options.compilerArgs += ["--enable-preview"]

0 commit comments

Comments
 (0)