From 5ec32d2896193c7613de5bd8f13c92f8ce868070 Mon Sep 17 00:00:00 2001 From: Jacek Milewski Date: Thu, 10 Oct 2024 18:29:57 +0200 Subject: [PATCH] junit deps fixed --- services/Pricing/build.gradle | 6 ++++-- services/Promoter/build.gradle | 6 ++++-- services/Sales/build.gradle | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/services/Pricing/build.gradle b/services/Pricing/build.gradle index 5b6b13ff..5296163c 100644 --- a/services/Pricing/build.gradle +++ b/services/Pricing/build.gradle @@ -80,8 +80,10 @@ dependencies { testImplementation project(':libs:SharedLib') testImplementation project(':libs:SharedLib').sourceSets.test.output - testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0' - testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.2' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.2' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.2' + testImplementation 'org.junit.platform:junit-platform-commons:1.11.2' + testImplementation 'org.junit.platform:junit-platform-launcher:1.11.2' testImplementation 'org.assertj:assertj-core:3.26.3' testImplementation 'org.assertj:assertj-vavr:0.4.3' diff --git a/services/Promoter/build.gradle b/services/Promoter/build.gradle index ae358921..1bbb92e4 100644 --- a/services/Promoter/build.gradle +++ b/services/Promoter/build.gradle @@ -77,8 +77,10 @@ dependencies { testImplementation project(':libs:SharedLib') testImplementation project(':libs:SharedLib').sourceSets.test.output - testImplementation 'org.junit.jupiter:junit-jupiter:5.11.2' - testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.2' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.2' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.2' + testImplementation 'org.junit.platform:junit-platform-commons:1.11.2' + testImplementation 'org.junit.platform:junit-platform-launcher:1.11.2' testImplementation 'org.assertj:assertj-core:3.26.3' testImplementation 'org.assertj:assertj-vavr:0.4.3' diff --git a/services/Sales/build.gradle b/services/Sales/build.gradle index 3f255316..2b3db1ce 100644 --- a/services/Sales/build.gradle +++ b/services/Sales/build.gradle @@ -69,8 +69,10 @@ dependencies { testImplementation project(':libs:SharedLib') testImplementation project(':libs:SharedLib').sourceSets.test.output - testImplementation 'org.junit.jupiter:junit-jupiter:5.11.2' - testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.2' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.2' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.2' + testImplementation 'org.junit.platform:junit-platform-commons:1.11.2' + testImplementation 'org.junit.platform:junit-platform-launcher:1.11.2' testImplementation 'org.assertj:assertj-core:3.26.3' testImplementation 'org.assertj:assertj-vavr:0.4.3'