Skip to content

Commit

Permalink
build: add release plugin (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
kosmoz committed Dec 9, 2022
1 parent cfa7630 commit 0b79ca5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
import net.researchgate.release.ReleaseExtension

subprojects {
repositories {
mavenCentral()
}
}

plugins {
id("net.researchgate.release") version "3.0.2"
}

configure<ReleaseExtension> {
preCommitText.set("release: ")
preTagCommitMessage.set("update version to ")
newVersionCommitMessage.set("update version to ")
}
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version=0.1.0-SNAPSHOT
javaOperatorVersion=4.0.1
crdGeneratorVersion=6.1.1
slf4jVersion=2.0.3
Expand Down
1 change: 0 additions & 1 deletion operator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ plugins {
}

group = "eu.glasskube.operator"
version = "0.1-SNAPSHOT"

val javaOperatorVersion: String by project
val crdGeneratorVersion: String by project
Expand Down

0 comments on commit 0b79ca5

Please sign in to comment.