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

25 lines
727 B
Groovy

apply plugin: VerifyMongoDBConfigurationPlugin
apply plugin: 'spring-boot'
dependencies {
compile project(":accounts-query-side-web")
compile project(":accounts-command-side-web")
compile project(":transactions-command-side-web")
compile project(":customers-command-side-web")
compile project(":customers-query-side-web")
compile project(":common-auth-web")
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "net.chrisrichardson.eventstore.client:eventstore-jdbc_2.10:$eventStoreClientVersion"
testCompile project(":testutil")
testCompile "org.springframework.boot:spring-boot-starter-test"
}