15 lines
490 B
Groovy
15 lines
490 B
Groovy
apply plugin: 'java'
|
|
|
|
dependencies {
|
|
compile project(":common")
|
|
compile project(":customers-query-side-common")
|
|
|
|
compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
|
|
compile "org.springframework.boot:spring-boot-starter-data-mongodb:$springBootVersion"
|
|
|
|
compile "org.springframework.security:spring-security-config:4.0.2.RELEASE"
|
|
compile "org.springframework.security:spring-security-web:4.0.2.RELEASE"
|
|
|
|
|
|
testCompile "junit:junit:4.11"
|
|
} |