Files
event-sourcing-examples/java-spring/accounts-command-side-backend/build.gradle
Chris Richardson 4b3fe001e7 Changed to use the Eventuate Java Client
Simplified Spring MVC code since it supports CompletableFuture
2016-05-16 06:39:05 -07:00

15 lines
427 B
Groovy

apply plugin: 'java'
dependencies {
compile project(":common-backend")
compile "io.eventuate.client.java:eventuate-client-java-spring:$eventuateClientVersion"
testCompile project(":testutil")
testCompile "junit:junit:4.11"
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
testCompile "io.eventuate.client.java:eventuate-client-java-jdbc:$eventuateClientVersion"
}