From 0127e86226ecfd281d31c6e613c62c20ff43176c Mon Sep 17 00:00:00 2001 From: Nathan Klick Date: Tue, 5 Dec 2023 17:56:02 -0600 Subject: [PATCH] chore: update jcovalent version and remove use of enforced platform (#609) Signed-off-by: Nathan Klick --- fullstack-core/fullstack-bom/build.gradle.kts | 6 +++--- fullstack-core/fullstack-readiness-api/build.gradle.kts | 2 +- fullstack-core/fullstack-service-locator/build.gradle.kts | 2 +- settings.gradle.kts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/fullstack-core/fullstack-bom/build.gradle.kts b/fullstack-core/fullstack-bom/build.gradle.kts index a2eda7c9b..881e41850 100644 --- a/fullstack-core/fullstack-bom/build.gradle.kts +++ b/fullstack-core/fullstack-bom/build.gradle.kts @@ -31,18 +31,18 @@ javaPlatform { dependencies { // Define the external Bill of Material (BOM) required by this project api(platform("io.fabric8:kubernetes-client-bom:6.6.2")) - api(platform("org.junit:junit-bom:5.9.3")) + api(platform("org.junit:junit-bom:5.10.1")) api(platform("org.assertj:assertj-bom:3.24.2")) api(platform("com.fasterxml.jackson:jackson-bom:2.15.2")) api(platform("org.mockito:mockito-bom:5.3.1")) - api(enforcedPlatform("org.apache.logging.log4j:log4j-bom:2.20.0")) + api(platform("org.apache.logging.log4j:log4j-bom:2.20.0")) } dependencies.constraints { api("org.slf4j:slf4j-api:2.0.9") api("org.slf4j:slf4j-nop:2.0.9") api("org.slf4j:slf4j-simple:2.0.9") - api("com.jcovalent.junit:jcovalent-junit-logging:0.3.1") + api("com.jcovalent.junit:jcovalent-junit-logging:0.3.2") api("io.github.classgraph:classgraph:4.8.161") for (p in rootProject.childProjects) { diff --git a/fullstack-core/fullstack-readiness-api/build.gradle.kts b/fullstack-core/fullstack-readiness-api/build.gradle.kts index fe767f097..4697329ec 100644 --- a/fullstack-core/fullstack-readiness-api/build.gradle.kts +++ b/fullstack-core/fullstack-readiness-api/build.gradle.kts @@ -19,4 +19,4 @@ plugins { id("com.hedera.fullstack.jpms-modules") } -dependencies { api(enforcedPlatform(project(":fullstack-bom"))) } +dependencies { api(platform(project(":fullstack-bom"))) } diff --git a/fullstack-core/fullstack-service-locator/build.gradle.kts b/fullstack-core/fullstack-service-locator/build.gradle.kts index 4a6dded2c..4cc5406b5 100644 --- a/fullstack-core/fullstack-service-locator/build.gradle.kts +++ b/fullstack-core/fullstack-service-locator/build.gradle.kts @@ -20,4 +20,4 @@ plugins { id("com.hedera.fullstack.maven-publish") } -dependencies { api(enforcedPlatform(project(":fullstack-bom"))) } +dependencies { api(platform(project(":fullstack-bom"))) } diff --git a/settings.gradle.kts b/settings.gradle.kts index 5546ff163..8ecbe93a4 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -17,7 +17,7 @@ pluginManagement { includeBuild("build-logic") } plugins { - id("com.gradle.enterprise") version "3.14.1" + id("com.gradle.enterprise").version("3.15.1") id("com.hedera.fullstack.settings") }