Files
event-sourcing-examples/java-spring/customer-command-side-web/build.gradle
2016-02-03 23:04:15 +03:00

12 lines
401 B
Groovy

apply plugin: 'java'
dependencies {
compile project(":customer-command-side-backend")
compile project(":common-web")
compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
testCompile "net.chrisrichardson.eventstore.client:eventstore-jdbc_2.10:$eventStoreClientVersion"
}