Files
event-sourcing-examples/java-spring/accounts-query-side-service/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

23 lines
647 B
Groovy

apply plugin: VerifyMongoDBConfigurationPlugin
apply plugin: VerifyEventStoreEnvironmentPlugin
apply plugin: 'spring-boot'
dependencies {
compile project(":accounts-query-side-web")
compile project(":common-swagger")
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "io.eventuate.client.java:eventuate-client-java-http-stomp-spring:$eventuateClientVersion"
testCompile project(":testutil")
testCompile "org.springframework.boot:spring-boot-starter-test"
}
test {
ignoreFailures System.getenv("EVENTUATE_API_KEY_ID") == null
}