We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e3ef5b commit d840b48Copy full SHA for d840b48
build.gradle
@@ -7,18 +7,20 @@ plugins {
7
id("com.gradle.plugin-publish") version "2.1.0"
8
}
9
10
+def releaseVersion = "0.0.1"
11
+
12
group = "io.github.git-commit-id"
13
14
project.gradle.taskGraph.whenReady {
15
if (gradle.taskGraph.hasTask(":publishAllPublicationsToLocalPluginRepositoryRepository")) {
- version = "0.0.1-alpha"
16
+ version = "${releaseVersion}-alpha.local-test"
17
18
// Skip signing when we publish to local
19
tasks.withType(Sign) {
20
enabled = false
21
22
} else {
- version = "0.0.1-beta"
23
+ version = "${releaseVersion}"
24
25
26
0 commit comments