Skip to content

Commit ea798eb

Browse files
authored
Use JDK11 (#60)
JDK11 doesn't require any changes in the setup
1 parent 36a1982 commit ea798eb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
java: [ '8' ]
15+
java: [ '11' ]
1616
architecture: [ 'x64' ]
1717
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
1818
steps:

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ dependencies {
4343
}
4444

4545
compileJava {
46-
sourceCompatibility = 1.8
47-
targetCompatibility = 1.8
46+
sourceCompatibility = 11
47+
targetCompatibility = 11
4848
}
4949

5050
idea {
5151
project {
52-
jdkName = 1.8
53-
languageLevel = 1.8
52+
jdkName = 11
53+
languageLevel = 11
5454
}
5555
}
5656

0 commit comments

Comments
 (0)