14 lines
408 B
Groovy
14 lines
408 B
Groovy
apply plugin: VerifyMongoDBConfigurationPlugin
|
|
|
|
dependencies {
|
|
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())
|
|
}
|