From f0f5dabffcf82705f5b377857337bc3d02763255 Mon Sep 17 00:00:00 2001 From: AI Teammate Date: Mon, 6 Oct 2025 11:48:19 +0000 Subject: [PATCH] DMC-587 [API] AI Teammate and Expert jobs needs to have preJSAction function --- dmtools-core/build.gradle | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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