22 lines
647 B
Groovy
22 lines
647 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.boot:spring-boot-starter-integration:${springBootVersion}"
|
|
|
|
testCompile project(':accurest-messaging-root:accurest-messaging-integration')
|
|
testCompile "org.springframework.boot:spring-boot-starter-test:${springBootVersion}"
|
|
testCompile('org.spockframework:spock-spring:1.0-groovy-2.4') {
|
|
exclude(group: 'org.codehaus.groovy')
|
|
}
|
|
} |