This message was deleted.
# plugin-development
s
This message was deleted.
a
When I publish this I get this published to
~/.m2/repository
, I'm not really understanding the duplicate publications, one that has the implementation and one that does not.
Here's my
settings.gradle
and
gratle.properties
It's worth mentioning that the way it is setup this way is so that ci publish this plugin locally and then consume itself to have the configuration it needs to publish the plugin to maven.
e
my-publish.my-publish.gradle.plugin
is the plugin marker artifact, so that
Copy code
plugins {
    id("my-plubish")
}
can find it: https://docs.gradle.org/current/userguide/plugins.html#sec:plugin_markers
it is normal and expected. dependency resolution will find the actual implementation via the marker
a
ok, thanks