Files
event-sourcing-examples/java-spring/e2e-test/build.gradle
Main 39309f23a1 - refactored the tests
- moved some dto classes into common module
2016-08-09 22:43:41 +03:00

17 lines
533 B
Groovy

apply plugin: VerifyMongoDBConfigurationPlugin
dependencies {
testCompile project(":accounts-command-side-web")
testCompile project(":transactions-command-side-web")
testCompile project(":accounts-query-side-web")
testCompile project(":testutil")
testCompile project(":common-auth")
testCompile "junit:junit:4.11"
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
}
test {
ignoreFailures (!project.hasProperty("ignoreE2EFailures") || ignoreE2EFailures.toBoolean())
}