From 3ea216c2d420c759103812f92cedfa20288d3933 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Thu, 17 Oct 2024 19:13:38 +0200 Subject: [PATCH] Upgrade optional dependencies Signed-off-by: Brian Clozel --- gradle.properties | 2 +- platform/build.gradle | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gradle.properties b/gradle.properties index 1e618714..405fb0fb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,6 +5,6 @@ org.gradle.daemon=true org.gradle.parallel=true org.gradle.jvmargs=-Dfile.encoding=UTF-8 -kotlinVersion=1.9.23 +kotlinVersion=1.9.25 kotlin.stdlib.default.dependency=false diff --git a/platform/build.gradle b/platform/build.gradle index 845fab20..6552b853 100644 --- a/platform/build.gradle +++ b/platform/build.gradle @@ -8,7 +8,7 @@ javaPlatform { dependencies { api(platform("org.springframework:spring-framework-bom:${springFrameworkVersion}")) - api(platform("com.fasterxml.jackson:jackson-bom:2.15.4")) + api(platform("com.fasterxml.jackson:jackson-bom:2.17.2")) api(platform("io.projectreactor:reactor-bom:2023.0.11")) api(platform("io.micrometer:micrometer-bom:1.13.6")) api(platform("io.micrometer:micrometer-tracing-bom:1.3.5")) @@ -17,15 +17,15 @@ dependencies { api(platform("com.querydsl:querydsl-bom:5.1.0")) api(platform("io.rsocket:rsocket-bom:1.1.4")) api(platform("org.jetbrains.kotlin:kotlin-bom:${kotlinVersion}")) - api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.0")) - api(platform("org.junit:junit-bom:5.10.2")) + api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.1")) + api(platform("org.junit:junit-bom:5.10.5")) api(platform("org.mockito:mockito-bom:5.11.0")) - api(platform("org.testcontainers:testcontainers-bom:1.19.7")) + api(platform("org.testcontainers:testcontainers-bom:1.19.8")) api(platform("org.apache.logging.log4j:log4j-bom:2.23.1")) constraints { api("com.graphql-java:graphql-java:${graphQlJavaVersion}") - api("io.micrometer:context-propagation:1.1.1") + api("io.micrometer:context-propagation:1.1.2") api("jakarta.annotation:jakarta.annotation-api:2.1.1") api("jakarta.servlet:jakarta.servlet-api:6.0.0") @@ -33,7 +33,7 @@ dependencies { api("jakarta.persistence:jakarta.persistence-api:3.1.0") api("com.apollographql.federation:federation-graphql-java-support:5.0.0") - api("com.netflix.graphql.dgs.codegen:graphql-dgs-codegen-shared-core:6.2.1") + api("com.netflix.graphql.dgs.codegen:graphql-dgs-codegen-shared-core:6.2.4") api("com.google.code.findbugs:jsr305:3.0.2")