diff --git a/dmtools-core/build.gradle b/dmtools-core/build.gradle index 05452c82..adc89a7b 100644 --- a/dmtools-core/build.gradle +++ b/dmtools-core/build.gradle @@ -23,11 +23,6 @@ def versions = [ poi : '5.4.1' ] -configurations { - integrationTestImplementation.extendsFrom testImplementation - integrationTestRuntimeOnly.extendsFrom testRuntimeOnly -} - dependencies { // Testing testImplementation 'junit:junit:4.13.2' @@ -108,6 +103,7 @@ dependencies { // Test dependencies testImplementation platform("org.junit:junit-bom:${versions.junit}") testImplementation 'org.junit.jupiter:junit-jupiter' + testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } configurations.configureEach { @@ -187,6 +183,11 @@ sourceSets { } } +configurations { + integrationTestImplementation.extendsFrom testImplementation + integrationTestRuntimeOnly.extendsFrom testRuntimeOnly +} + // Configure the processIntegrationTestResources task specifically processIntegrationTestResources { duplicatesStrategy = DuplicatesStrategy.INCLUDE