We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9921907 commit 9ce4ff0Copy full SHA for 9ce4ff0
codegen/smithy-aws-kotlin-codegen/build.gradle.kts
@@ -43,13 +43,13 @@ dependencies {
43
44
tasks.withType<KotlinCompile> {
45
compilerOptions {
46
- jvmTarget.set(JvmTarget.JVM_1_8)
+ jvmTarget.set(JvmTarget.JVM_17)
47
}
48
49
50
tasks.withType<JavaCompile> {
51
- sourceCompatibility = JavaVersion.VERSION_1_8.toString()
52
- targetCompatibility = JavaVersion.VERSION_1_8.toString()
+ sourceCompatibility = JavaVersion.VERSION_17.toString()
+ targetCompatibility = JavaVersion.VERSION_17.toString()
53
54
55
// Reusable license copySpec
0 commit comments