Fixed broken Gradle tests

This commit is contained in:
Marcin Grzejszczak
2016-07-13 15:34:38 +02:00
parent 8181c199ec
commit 499243b5e8
2 changed files with 6 additions and 0 deletions

View File

@@ -2,6 +2,10 @@ buildscript {
repositories {
mavenCentral()
mavenLocal()
maven { url "http://repo.spring.io/libs-snapshot-local" }
maven { url "http://repo.spring.io/libs-release-local" }
maven { url "http://repo.spring.io/libs-staging-local" }
maven { url 'http://repo.spring.io/plugins-snapshot' }
maven { url "http://repo.spring.io/plugins-release-local" }
maven { url "http://repo.spring.io/plugins-staging-local/" }
}
@@ -39,6 +43,7 @@ dependencies {
testRuntime "org.spockframework:spock-spring"
testCompile "org.springframework:spring-test"
testCompile "org.spockframework:spock-core"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "junit:junit"
testCompile "org.springframework.cloud.contract:spring-cloud-contract-stub-runner-stream:${findProperty('verifierVersion') ?: verifierVersion}"
}

View File

@@ -35,6 +35,7 @@ dependencies {
testRuntime "org.spockframework:spock-spring"
testCompile "org.springframework:spring-test"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "org.spockframework:spock-core"
testCompile "junit:junit"
testCompile "org.springframework.cloud.contract:spring-cloud-contract-stub-runner-spring:${findProperty('verifierVersion') ?: verifierVersion}"