fix(build): target Kotlin 1.9

This commit is contained in:
Harsh Shandilya 2023-11-15 00:15:24 +05:30
parent 5a1cdc73c5
commit 4b4d133e8b
No known key found for this signature in database

View file

@ -31,7 +31,7 @@ class KotlinCommonPlugin : Plugin<Project> {
compilerOptions {
allWarningsAsErrors.set(true)
freeCompilerArgs.addAll(ADDITIONAL_COMPILER_ARGS)
languageVersion.set(KotlinVersion.KOTLIN_1_8)
languageVersion.set(KotlinVersion.KOTLIN_1_9)
}
}
withType<Test>().configureEach {