We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36a1982 commit ea798ebCopy full SHA for ea798eb
.github/workflows/build.yml
@@ -12,7 +12,7 @@ jobs:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
- java: [ '8' ]
+ java: [ '11' ]
16
architecture: [ 'x64' ]
17
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
18
steps:
build.gradle
@@ -43,14 +43,14 @@ dependencies {
43
}
44
45
compileJava {
46
- sourceCompatibility = 1.8
47
- targetCompatibility = 1.8
+ sourceCompatibility = 11
+ targetCompatibility = 11
48
49
50
idea {
51
project {
52
- jdkName = 1.8
53
- languageLevel = 1.8
+ jdkName = 11
+ languageLevel = 11
54
55
56
0 commit comments