Build: Fix manifest for kotlin-compiler in jps build

Trigger manifest generation from jar task during jps import
This commit is contained in:
Vyacheslav Gerasimov
2019-06-25 18:09:41 +03:00
parent fc68bb46dc
commit 22bbbeb1ec
4 changed files with 33 additions and 30 deletions
+2 -2
View File
@@ -16,6 +16,6 @@ sourceSets {
}
runtimeJar {
manifest.attributes.put("Main-Class", "org.jetbrains.kotlin.runner.Main")
manifest.attributes.put("Class-Path", "kotlin-stdlib.jar")
manifest.attributes["Main-Class"] = "org.jetbrains.kotlin.runner.Main"
manifest.attributes["Class-Path"] = "kotlin-stdlib.jar"
}