Nicholas Bilyk
05/26/2020, 7:00 PMmaven-publish
plugin, however for JS only projects this isn't the case.
It's easy enough to add -
val kotlinSourcesJar by tasks.named("kotlinSourcesJar")
publishing {
publications {
create<MavenPublication>("default") {
from(components["kotlin"])
artifact(kotlinSourcesJar)
}
}
}
However, this isn't really documented and feels inconsistent. This is with 1.4-M1 EAP.gildor
05/27/2020, 4:06 AMDarran
05/28/2020, 4:52 AM