File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,10 +51,10 @@ jobs:
5151 - name : Checkout repository
5252 uses : actions/checkout@v2
5353
54- - name : Prepare Java SDK 12
54+ - name : Prepare Java SDK 11
5555 uses : actions/setup-java@v1
5656 with :
57- java-version : 12
57+ java-version : 11
5858
5959 - name : Cache Gradle packages
6060 uses : actions/cache@v2
@@ -109,10 +109,10 @@ jobs:
109109 - name : Checkout repository
110110 uses : actions/checkout@v2
111111
112- - name : Prepare Java SDK 12
112+ - name : Prepare Java SDK 11
113113 uses : actions/setup-java@v1
114114 with :
115- java-version : 12
115+ java-version : 11
116116
117117 - name : Build project
118118 run : ./gradlew assemble
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ apply plugin: 'io.spring.dependency-management'
1313
1414group = ' io.openfuture.api'
1515version = ' v2.6.9' // versionDetails().lastTag[1..-1] + (versionDetails().isCleanTag ? '' : '-DIRTY')
16- sourceCompatibility = 12
16+ sourceCompatibility = 11
1717
1818repositories {
1919 mavenCentral()
@@ -78,13 +78,13 @@ sourceSets {
7878compileKotlin {
7979 kotlinOptions {
8080 freeCompilerArgs = [" -Xjsr305=strict" ]
81- jvmTarget = " 12 "
81+ jvmTarget = " 11 "
8282 }
8383}
8484compileTestKotlin {
8585 kotlinOptions {
8686 freeCompilerArgs = [" -Xjsr305=strict" ]
87- jvmTarget = " 12 "
87+ jvmTarget = " 11 "
8888 }
8989}
9090
You can’t perform that action at this time.
0 commit comments