Properly ignore tests if no backends are configured

This commit is contained in:
Paul Schaub 2023-01-22 16:53:50 +01:00
parent 0b96a5314f
commit 3789b60f0b
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
11 changed files with 37 additions and 21 deletions

View file

@ -16,6 +16,7 @@ dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
// Read json config file
testImplementation "com.google.code.gson:gson:2.10.1"
api project(":sop-java")
@ -23,9 +24,6 @@ dependencies {
api "org.slf4j:slf4j-api:$slf4jVersion"
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
// Compare version strings
implementation 'org.apache.maven:maven-artifact:3.6.3'
// @Nonnull, @Nullable...
implementation "com.google.code.findbugs:jsr305:$jsrVersion"
}