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

25 lines
717 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:spring-jms:${springVersion}"
compile 'org.apache.activemq:activemq-broker:5.12.1'
compile 'org.apache.activemq:activemq-pool:5.12.1'
testCompile project(':accurest-messaging-root:accurest-messaging-core')
testCompile "org.springframework.boot:spring-boot-starter-test:${springBootVersion}"
testCompile('org.spockframework:spock-spring:1.0-groovy-2.4') {
exclude(group: 'org.codehaus.groovy')
}
}