Files
spring-cloud-contract/samples/messaging-stream/build.gradle
Marcin Grzejszczak 0a7f484655 Fixing deps (#251)
2016-04-28 11:44:24 +02:00

22 lines
658 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:${springBootVersion}"
compile "org.springframework.cloud:spring-cloud-stream-binder-rabbit:${springStreamVersion}"
testCompile project(':accurest-messaging-root:accurest-messaging-stream')
testCompile "org.springframework.cloud:spring-cloud-stream-test-support:${springStreamVersion}"
testCompile('org.spockframework:spock-spring:1.0-groovy-2.4') {
exclude(group: 'org.codehaus.groovy')
}
}