We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2012ac1 + efb81d2 commit bab7491Copy full SHA for bab7491
build.gradle
@@ -1,3 +1,5 @@
1
+def spockRetryVersion = "0.4.1"
2
+
3
buildscript {
4
repositories {
5
jcenter()
@@ -34,7 +36,7 @@ publishing {
34
36
from components.java
35
37
groupId "com.anotherchrisberry"
38
artifactId "spock-retry"
- version "0.4"
39
+ version "${spockRetryVersion}"
40
artifact sourceJar {
41
classifier "sources"
42
}
@@ -52,9 +54,9 @@ bintray {
52
54
vcsUrl = "https://github.com/anotherchrisberry/spock-retry.git"
53
55
publications = ["mavenJava"]
56
version {
- name = "0.4.0"
57
+ name = "${spockRetryVersion}"
58
released = new Date()
- vcsTag = "0.4"
59
+ vcsTag = "${spockRetryVersion}"
60
61
62
0 commit comments