File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,14 +59,14 @@ val generateSdkRuntimeVersion by tasks.registering {
5959
6060tasks.withType<KotlinCompile > {
6161 compilerOptions {
62- jvmTarget.set(JvmTarget .JVM_17 )
62+ jvmTarget.set(JvmTarget .JVM_1_8 )
6363 }
6464 dependsOn(generateSdkRuntimeVersion)
6565}
6666
6767tasks.withType<JavaCompile > {
68- sourceCompatibility = JavaVersion .VERSION_17 .toString()
69- targetCompatibility = JavaVersion .VERSION_17 .toString()
68+ sourceCompatibility = JavaVersion .VERSION_1_8 .toString()
69+ targetCompatibility = JavaVersion .VERSION_1_8 .toString()
7070}
7171
7272// Reusable license copySpec
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ class S3ExpressTest {
136136 }
137137
138138 @Test
139- fun testUploadPartContainsNoChecksums () = runTest {
139+ fun testUploadPartContainsNoDefaultChecksum () = runTest {
140140 val testBucket = testBuckets.first()
141141 val testObject = " I-will-be-uploaded-in-parts-!"
142142
You can’t perform that action at this time.
0 commit comments