Skip to content

Commit

Permalink
chore: update jcovalent version and remove use of enforced platform (#…
Browse files Browse the repository at this point in the history
…609)

Signed-off-by: Nathan Klick <[email protected]>
  • Loading branch information
nathanklick committed Dec 5, 2023
1 parent 0d3addf commit 0127e86
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions fullstack-core/fullstack-bom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion fullstack-core/fullstack-readiness-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ plugins {
id("com.hedera.fullstack.jpms-modules")
}

dependencies { api(enforcedPlatform(project(":fullstack-bom"))) }
dependencies { api(platform(project(":fullstack-bom"))) }
2 changes: 1 addition & 1 deletion fullstack-core/fullstack-service-locator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ plugins {
id("com.hedera.fullstack.maven-publish")
}

dependencies { api(enforcedPlatform(project(":fullstack-bom"))) }
dependencies { api(platform(project(":fullstack-bom"))) }
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}

Expand Down

0 comments on commit 0127e86

Please sign in to comment.