25 lines
717 B
Groovy
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')
|
|
}
|
|
} |