This message was deleted.
# community-support
s
This message was deleted.
The coordinates changed to
Copy code
classpath "gradle.plugin.com.github.johnrengelman:shadow:7.1.2"
(you can see this in the plugin portal page, legacy plugin application)
(Or open the pom file and follow the dependencies)
e
Aha! Thank you. Is this a systematic change to how Gradle 7 plugins are published?
m
Maybe? If it is, it's not systematic, our plugin is still published using the same group as ever.
e
OK. This plugin has had some inconsistent naming in the past (jengelman vs johnrengelman) so maybe the author's just been fixing that
👍 1
m
Yep, it's in the CHANGELOG
👍 1
e
Thank you
👍 1
m
Sure thing!
v
Other than, that, you could also simply use the plugin ID as dependency instead, then you are not affected of changes in the coordinates of the actual code artifact:
Copy code
<plugin id>:<plugin id>.gradle.plugin:<plugin version>
That is also how plugins are resolved from the id in the
plugins { ... }
block
👍 1