This message was deleted.
# community-support
s
This message was deleted.
v
a
the
.gradle.plugin
suffix comes from the Gradle Plugin Marker. https://docs.gradle.org/8.1.1/userguide/plugins.html#sec:plugin_markers
Copy code
${plugin.id}:${plugin.id}.gradle.plugin:${plugin.version}
So if the plugin ID is
org.jetbrains.kotlin.jvm
, then the Maven Coordinates of the plugin marker are
Copy code
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:$version
And that Maven artifact will be empty, except for a POM that has a dependency on the actual plugin JAR, which has the coordinates
Copy code
org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion