fix(build): target Kotlin 2.0

This commit is contained in:
Harsh Shandilya 2023-11-15 00:15:24 +05:30
parent c6de087615
commit 9615514d6a

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_2_0)
}
}
withType<Test>().configureEach {