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 9d78dbf commit 5eff708Copy full SHA for 5eff708
1 file changed
build.gradle.kts
@@ -1,11 +1,24 @@
1
plugins {
2
`maven-publish`
3
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
4
+ id("pl.allegro.tech.build.axion-release") version "1.16.1" // this is the last version that supports Java 8
5
}
6
7
+scmVersion {
8
+ tag {
9
+ prefix = "javacan-"
10
+ }
11
+ nextVersion {
12
+ suffix = "SNAPSHOT"
13
+ separator = "-"
14
15
+}
16
+
17
+val gitVersion: String = scmVersion.version
18
19
allprojects {
20
group = "tel.schich"
- version = "3.5.0-SNAPSHOT"
21
+ version = gitVersion
22
23
24
nexusPublishing {
0 commit comments