Files
event-sourcing-examples/java-spring/monolithic-web/build.gradle
2015-01-03 11:48:23 -08:00

19 lines
485 B
Groovy

apply plugin: 'spring-boot'
dependencies {
compile project(":queryside-web")
compile project(":commandside-web-accounts")
compile project(":commandside-web-transactions")
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "net.chrisrichardson.eventstore.client:eventstore-jdbc:$eventStoreClientVersion"
testCompile "org.springframework.boot:spring-boot-starter-test"
}