Depend on junit-platform-suite to avoid needing to inherit test suite for external-sop tests

This commit is contained in:
Paul Schaub 2025-07-01 15:06:50 +02:00
parent c651adc0b3
commit d32d9b54d7
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
16 changed files with 17 additions and 183 deletions

View file

@ -15,7 +15,9 @@ repositories {
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"
testImplementation "org.junit.platform:junit-platform-suite-api:1.13.2"
testRuntimeOnly 'org.junit.platform:junit-platform-suite:1.13.2'
api project(":sop-java")
api "org.slf4j:slf4j-api:$slf4jVersion"