Files
spring-cloud-contract/samples/messaging-integration/build.gradle
2016-04-20 11:32:47 +02:00

23 lines
691 B
Groovy

repositories {
mavenLocal()
jcenter()
maven {
url "http://repo.spring.io/snapshot"
}
maven {
url "http://repo.spring.io/milestone"
}
}
dependencies {
compile project(':accurest-core')
compile 'org.springframework.boot:spring-boot-starter-actuator:1.3.3.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-integration:1.3.3.RELEASE'
compile 'org.springframework:spring-messaging:[4.0.0.RELEASE,)'
testCompile project(':accurest-messaging-root:accurest-messaging-integration')
testCompile 'org.springframework.boot:spring-boot-starter-test:1.3.3.RELEASE'
testCompile('org.spockframework:spock-spring:1.0-groovy-2.4') {
exclude(group: 'org.codehaus.groovy')
}
}