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
13 lines
486 B
Groovy
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"
|
|
|
|
} |