[K/N][perf] Fix kotlin language version in kotlin-dsl plugin for performance subproject
This commit is contained in:
@@ -133,3 +133,12 @@ gradlePlugin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
afterEvaluate {
|
||||||
|
tasks.withType<KotlinCompile>().configureEach {
|
||||||
|
kotlinOptions {
|
||||||
|
languageVersion = "1.4"
|
||||||
|
apiVersion = "1.4"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -106,3 +106,12 @@ dependencies {
|
|||||||
implementation("com.github.jengelman.gradle.plugins:shadow:$shadowVersion")
|
implementation("com.github.jengelman.gradle.plugins:shadow:$shadowVersion")
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-metadata-klib:$metadataVersion")
|
implementation("org.jetbrains.kotlinx:kotlinx-metadata-klib:$metadataVersion")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
afterEvaluate {
|
||||||
|
tasks.withType<KotlinCompile>().configureEach {
|
||||||
|
kotlinOptions {
|
||||||
|
languageVersion = "1.4"
|
||||||
|
apiVersion = "1.4"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user