Files
event-sourcing-examples/java-spring/common-auth-web/build.gradle
Main 8c342e40ce - added /login endpoint
- added authorization test
2016-02-15 23:18:28 +03:00

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