Files
event-sourcing-examples/java-spring/common-auth/build.gradle
2016-09-23 08:38:20 -07:00

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"
}