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 2451edf commit c6dd8aaCopy full SHA for c6dd8aa
build.gradle
@@ -26,15 +26,16 @@ dependencies {
26
compile gradleApi()
27
compile localGroovy()
28
29
-
30
testCompile 'junit:junit:4.+'
31
- testCompile ("org.spockframework:spock-core:0.7-groovy-${gradle.gradleVersion.startsWith('1.')?'1.8':'2.0'}") {
+
+ String spockVersion = "org.spockframework:spock-core:0.7-groovy-${gradle.gradleVersion.startsWith('1.')?'1.8':'2.0'}"
32
33
+ testCompile (spockVersion) {
34
exclude module : 'groovy-all'
35
}
- integrationTestCompile ("org.spockframework:spock-core:0.7-groovy-${gradle.gradleVersion.startsWith('1.')?'1.8':'2.0'}") {
36
+ integrationTestCompile (spockVersion) {
37
38
39
40
41
test {
0 commit comments