Skip to content

Commit

Permalink
fix: remove snyk scan issue by upgrading jcovalent (#600)
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Klick <nathan@swirldslabs.com>
Co-authored-by: Nathan Klick <nathan@swirldslabs.com>
  • Loading branch information
jeromy-cannon and nathanklick authored Dec 4, 2023
1 parent 451659d commit 8b52c5f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions fullstack-core/fullstack-bom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,14 @@ dependencies {
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"))
}

dependencies.constraints {
api("org.slf4j:slf4j-api:2.0.7")
api("org.slf4j:slf4j-nop:2.0.7")
api("org.slf4j:slf4j-simple:2.0.7")
api("com.jcovalent.junit:jcovalent-junit-logging:0.3.0")
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("io.github.classgraph:classgraph:4.8.161")

for (p in rootProject.childProjects) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class HelmClientTest {

private static final String NAMESPACE = "helm-client-test-ns";
private static HelmClient helmClient;
private static final int INSTALL_TIMEOUT = 10;
private static final int INSTALL_TIMEOUT = 30;

private static final List<LogEntry> EXPECTED_LOG_ENTRIES = List.of(
LogEntryBuilder.builder()
Expand Down
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(platform(project(":fullstack-bom"))) }
dependencies { api(enforcedPlatform(project(":fullstack-bom"))) }

0 comments on commit 8b52c5f

Please sign in to comment.