Files
event-sourcing-examples/java-spring/common-auth-web/build.gradle
Main 39309f23a1 - refactored the tests
- moved some dto classes into common module
2016-08-09 22:43:41 +03:00

12 lines
312 B
Groovy

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