Shan
04/18/2019, 10:22 PMfrom(components["java"]) and artifact(tasks["sourcesJar"]) within my maven publication in my MPP build file?serebit
04/18/2019, 10:56 PMShan
04/19/2019, 1:43 PMShan
04/19/2019, 1:53 PMsign(publishing.publications) and see if that works for nowh0tk3y
04/19/2019, 3:04 PMmetadata for the built-in target of the same name, plus, if you publish a library with Gradle module metadata, there is a 'root' publication named kotlinMultiplatform (this one does not have a sources JAR).
You can get the existing publications from the project through debug output from the build script, like:
println(publishing.publications.names)h0tk3y
04/19/2019, 3:04 PMsign(publishing.publications) should work just fine.h0tk3y
04/19/2019, 3:05 PMh0tk3y
04/19/2019, 3:07 PM