Files
event-sourcing-examples/scala-spring/accounts-command-side-service/build.gradle
Chris Richardson 2e31853ad2 Improved module name <functional-area>-<Command|Query>....
Standalone services now use the Event Store Server (many tests still use the embedded server)
2015-04-14 19:08:07 -07:00

23 lines
596 B
Groovy

apply plugin: 'scala'
apply plugin: 'spring-boot'
apply plugin: VerifyEventStoreEnvironmentPlugin
dependencies {
compile "org.scala-lang:scala-library:2.10.2"
compile project(":accounts-command-side-web")
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "net.chrisrichardson.eventstore.client:eventstore-http-stomp-client:$eventStoreClientVersion"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile scalaTestDependency
}
test {
ignoreFailures true
}