14 lines
448 B
Groovy
14 lines
448 B
Groovy
apply plugin: 'java'
|
|
|
|
dependencies {
|
|
compile project(":common-auth")
|
|
compile project(":common-customers")
|
|
compile project(":common-web")
|
|
|
|
compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
|
|
compile "org.springframework.boot:spring-boot-starter-security:$springBootVersion"
|
|
compile "org.springframework.boot:spring-boot-starter-data-mongodb:$springBootVersion"
|
|
|
|
testCompile "junit:junit:4.11"
|
|
}
|