Files
event-sourcing-examples/java-spring/e2e-test/build.gradle
2016-09-13 22:02:17 +03:00

18 lines
573 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"
testCompile "org.jsoup:jsoup:1.9.2"
}
test {
ignoreFailures (!project.hasProperty("ignoreE2EFailures") || ignoreE2EFailures.toBoolean())
}