Files
event-sourcing-examples/java-spring/common-auth-web/build.gradle

12 lines
322 B
Groovy

apply plugin: 'java'
dependencies {
compile project(":common-auth")
compile project(":common-customers")
compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
compile "org.springframework.boot:spring-boot-starter-security:$springBootVersion"
testCompile "junit:junit:4.11"
}