Dariusz Kuc
05/07/2020, 6:36 PMpom.xml
. So my question is
a) I’m publishing to both Maven central and Gradle plugin portal - should this plugin marker pom.xml
actually be published to Central?
b) If its not needed -> how do I exclude it from publications
c) If it is needed -> how do I configure it to add required fields for sonatype validation
d) its a multi-module project where other libs are published to Maven central -> how do I disable Gradle plugin from publishing to Maven central?Dariusz Kuc
05/07/2020, 7:03 PMtasks.withType<PublishToMavenRepository> { enabled = false }
but I still see publishPluginMavenPublicationToSonatypeRepository
Dariusz Kuc
05/07/2020, 10:25 PM