File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
smithy-aws-kotlin-codegen Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -58,14 +58,14 @@ val generateSdkRuntimeVersion by tasks.registering {
5858
5959tasks.withType<KotlinCompile > {
6060 compilerOptions {
61- jvmTarget.set(JvmTarget .JVM_1_8 )
61+ jvmTarget.set(JvmTarget .JVM_17 )
6262 }
6363 dependsOn(generateSdkRuntimeVersion)
6464}
6565
6666tasks.withType<JavaCompile > {
67- sourceCompatibility = JavaVersion .VERSION_1_8 .toString()
68- targetCompatibility = JavaVersion .VERSION_1_8 .toString()
67+ sourceCompatibility = JavaVersion .VERSION_17 .toString()
68+ targetCompatibility = JavaVersion .VERSION_17 .toString()
6969}
7070
7171// Reusable license copySpec
Original file line number Diff line number Diff line change @@ -43,13 +43,13 @@ dependencies {
4343
4444tasks.withType<KotlinCompile > {
4545 compilerOptions {
46- jvmTarget.set(JvmTarget .JVM_1_8 )
46+ jvmTarget.set(JvmTarget .JVM_17 )
4747 }
4848}
4949
5050tasks.withType<JavaCompile > {
51- sourceCompatibility = JavaVersion .VERSION_1_8 .toString()
52- targetCompatibility = JavaVersion .VERSION_1_8 .toString()
51+ sourceCompatibility = JavaVersion .VERSION_17 .toString()
52+ targetCompatibility = JavaVersion .VERSION_17 .toString()
5353}
5454
5555// Reusable license copySpec
You can’t perform that action at this time.
0 commit comments