We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac54321 commit ea03981Copy full SHA for ea03981
build.gradle
@@ -16,9 +16,17 @@ plugins {
16
}
17
18
group 'io.securecodebox'
19
-version = scmVersion.version
20
sourceCompatibility = '17'
21
+scmVersion {
22
+ tag {
23
+ prefix.set('') // Remove the plugin's default "v" tag prefix
24
+ }
25
+
26
+ useHighestVersion.set(true) // https://axion-release-plugin.readthedocs.io/en/latest/configuration/version/#tag-with-the-highest-version
27
+}
28
+version = scmVersion.version
29
30
repositories {
31
mavenCentral()
32
0 commit comments