This message was deleted.
# community-support
s
This message was deleted.
t
Gradle uses so-called "plugin marker artifacts": https://docs.gradle.org/current/userguide/plugins.html#sec:plugin_markers It maps the plugin ID to Maven groupId and artifactId, which should resolve to a component that will add the actual component as a dependency.
j
It is my understanding that running this task would publish all "plugin maker artefacts", correct ?
publishToMavenLocal - Publishes all Maven publications produced by this project to the local Maven cache.
t
Assuming you used the java-gradle-plugin that declares them, then yes. You should then see
com/veepee/kotlin/android/application/com.veepee.kotlin.android.application.gradle.plugin/
and
com/veepee/android/test/android/application/com.veepee.android.test.android.application.gradle.plugin/
in your repository. (of course you need to include a version somewhere in the consuming project, e.g.:
id ("com.veepee.kotlin.android.application") version "0.0.1"
)
j
Thank you Thomas! I was able to publish my plugins!