Suppress "runtime JAR files version mismatch" warnings in some plugins

This commit is contained in:
Alexander Udalov
2021-01-11 15:21:53 +01:00
parent 0d8f909bda
commit 2a7a297399
5 changed files with 14 additions and 4 deletions
@@ -23,6 +23,10 @@ dependencies {
embedded(project(":kotlinx-serialization-compiler-plugin")) { transitive = false }
}
tasks.withType(project.compileKotlin.class) {
kotlinOptions.freeCompilerArgs += ["-Xskip-runtime-version-check"]
}
jar {
manifestAttributes(manifest, project)
}