Files
event-sourcing-examples/java-spring/backend-integration-tests/build.gradle
Chris Richardson b5a34c6045 Various cleanups
Changed gradle-all.sh so that Gradle JVM settings are picked up from grade.properties
Added Gradle plugin that verifies that SPRING_DATA_MONGODB_URI is set before running any tests that need MongoDB
2015-01-05 15:35:27 -08:00

13 lines
486 B
Groovy

apply plugin: VerifyMongoDBConfigurationPlugin
dependencies {
testCompile project(":commandside-backend-accounts")
testCompile project(":commandside-backend-transactions")
testCompile project(":queryside-backend")
testCompile project(":testutil")
testCompile "junit:junit:4.11"
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
testCompile "net.chrisrichardson.eventstore.client:eventstore-jdbc:$eventStoreClientVersion"
}