Skip to content

Commit 4088cf9

Browse files
committed
Add 2025.3 support to kotlinTarget function
1 parent b2251cf commit 4088cf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/kotlin/software/aws/toolkits/gradle/BuildScriptUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ fun Project.jvmTarget(): Provider<JavaVersion> = withCurrentProfileName {
2929
fun Project.kotlinTarget(): Provider<String> = withCurrentProfileName {
3030
when (it) {
3131
"2024.3" -> KotlinVersionEnum.KOTLIN_2_0
32-
"2025.1", "2025.2" -> KotlinVersionEnum.KOTLIN_2_1
32+
"2025.1", "2025.2", "2025.3" -> KotlinVersionEnum.KOTLIN_2_1
3333
else -> error("not set")
3434
}.version
3535
}

0 commit comments

Comments
 (0)