Standalone services now use the Event Store Server (many tests still use the embedded server)
17 lines
374 B
Groovy
17 lines
374 B
Groovy
apply plugin: 'scala'
|
|
|
|
dependencies {
|
|
compile "org.scala-lang:scala-library:2.10.2"
|
|
compile project(":accounts-query-side-backend")
|
|
compile project(":common-web")
|
|
|
|
compile "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion"
|
|
|
|
testCompile "org.springframework.boot:spring-boot-starter-test"
|
|
testCompile scalaTestDependency
|
|
|
|
}
|
|
|
|
|
|
|