Standalone services now use the Event Store Server (many tests still use the embedded server)
19 lines
475 B
Groovy
19 lines
475 B
Groovy
apply plugin: 'scala'
|
|
apply plugin: VerifyMongoDBConfigurationPlugin
|
|
|
|
dependencies {
|
|
|
|
compile "org.scala-lang:scala-library:2.10.2"
|
|
|
|
compile project(":transactions-command-side-backend")
|
|
compile project(":accounts-command-side-backend")
|
|
compile project(":accounts-query-side-backend")
|
|
|
|
testCompile scalaTestDependency
|
|
|
|
testCompile "junit:junit:4.11"
|
|
testCompile "net.chrisrichardson.eventstore.client:eventstore-jdbc:$eventStoreClientVersion"
|
|
}
|
|
|
|
|