Shan
11/24/2020, 11:33 PMmetadata
default artifact was removed in Kotlin 1.4.20, but I'm still seeing it when listing out the default publication names.
publishing {
publications.withType<MavenPublication>().names // [jvm, kotlinMultiplatform, metadata]
}
Should I just manually set it to not publish the metadata
artifact, or will it be ignored during the publish task?Benjamin Charais
11/26/2020, 3:34 PM