Files
event-sourcing-examples/scala-spring/transactions-command-side-web/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

11 lines
307 B
Groovy

apply plugin: 'scala'
dependencies {
compile "org.scala-lang:scala-library:2.10.2"
compile project(":transactions-command-side-backend")
compile project(":common-web")
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
testCompile scalaTestDependency
}