when using the buildscript syntax it looks like the plugin coordinates from the gradle portal have changed and now require a gradle.plugin. prefix.
so one should now use a synatx like the following:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.fr.brouillard.oss.gradle:gradle-jgitver-plugin:0.4.0"
}
}
apply plugin: "fr.brouillard.oss.gradle.jgitver"
Unfortunately this a breaking change, in order to keep the old coordinates one should follow
Some tests are required to understand the behavior of mavenCoordinates and define potentia next steps/stories for the plugin.
when using the buildscript syntax it looks like the plugin coordinates from the gradle portal have changed and now require a
gradle.plugin.prefix.so one should now use a synatx like the following:
Unfortunately this a breaking change, in order to keep the old coordinates one should follow
mavenCoordinatesin https://plugins.gradle.org/docs/publish-plugin.Some tests are required to understand the behavior of
mavenCoordinatesand define potentia next steps/stories for the plugin.