-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Existing Plugin needs activation #124
Comments
Hi. Plugins usually need approval only on the initial publication (first version) or when their GAV coordinates change. I think that's the case now, will look into it and let you know. |
@Larusso The cause for the approval is indeed that the plugin publication GAV has lost the 'gradle.plugin' prefix. That probably happened because you included the Maven Publish plugin or have added a I have approved your plugins and I don't think you will need to go through approval again on the next version, if you don't change the publication again. |
@jbartok thanks for the super fast reply. Thanks again. |
5eade53 inadvertently changed the coordinates used for the plugin from gradle.plugin.com.google.protobuf:protobuf-gradle-plugin to com.google.protobuf:protobuf-gradle-plugin. This is because simply adding the maven-publish plugin changes plugin-publish's behavior (gradle/plugin-portal-requests#124). Although this was accidental, this does seem to be the way things are supposed to work going forward as later versions of the plugin-publish than we are using always include maven-publish and the `mavenCoordinates` override block was removed https://plugins.gradle.org/plugin/com.gradle.plugin-publish/1.0.0 .
5eade53 inadvertently changed the coordinates used for the plugin from gradle.plugin.com.google.protobuf:protobuf-gradle-plugin to com.google.protobuf:protobuf-gradle-plugin. This is because simply adding the maven-publish plugin changes plugin-publish's behavior (gradle/plugin-portal-requests#124). Although this was accidental, this does seem to be the way things are supposed to work going forward as later versions of the plugin-publish than we are using always include maven-publish and the `mavenCoordinates` override block was removed https://plugins.gradle.org/plugin/com.gradle.plugin-publish/1.0.0 .
Context
I wanted to publish a new version of my plugin. I changed my setup to leverage the
java-gradle-plugin
in combination withcom.gradle.plugin-publish
. In the past I only used thecom.gradle.plugin-publish
plugin and created the properties file etc by hand. I also added two new plugins in the same project which I also wanted to publish.I was always fine with the fact that all my plugins where put in the
gradle.plugin.*
group.From the output of my build this seems to be no longer the case?
I received two emails with inforamtion that a new version has been published (
net.wooga.plugins
andnet.wooga.plugins-private
). But I can't find and resolve them on the plugins portal page.I'm confused if now all new plugins need to be approved before going live. I could not find a reference with the approval process in the docs. But I was under the assumption that one needed approval only if one wants to publish with a custom group name (without
gradle.plugins.
appended)The text was updated successfully, but these errors were encountered: