Build default jvm core libraries artifacts as modular

#KT-21266
This commit is contained in:
Ilya Gorbunov
2020-04-20 23:24:44 +03:00
parent e1e149a062
commit 01fb200791
5 changed files with 15 additions and 23 deletions
+4 -1
View File
@@ -204,7 +204,10 @@ val result by task<Jar> {
from {
zipTree(intermediate.get().singleOutputFile())
}
callGroovy("manifestAttributes", manifest, project, "Main")
from(zipTree(provider { reflectShadowJar.get().archiveFile.get().asFile })) {
include("META-INF/versions/**")
}
callGroovy("manifestAttributes", manifest, project, "Main", true)
}
val modularJar by task<Jar> {