From f33bb595b035032772b55f2c66e203ed9db2f5cc Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Wed, 29 Jun 2022 12:20:17 -0700 Subject: [PATCH] Remove gradle.plugin from coordinates for recent release 5eade538 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 (https://github.com/gradle/plugin-portal-requests/issues/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 . --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2345dc41..fcbc70e6 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ buildscript { gradlePluginPortal() } dependencies { - classpath 'gradle.plugin.com.google.protobuf:protobuf-gradle-plugin:0.8.19' + classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.19' } } ```