diff --git a/build.gradle b/build.gradle index 14232f8..01f5856 100644 --- a/build.gradle +++ b/build.gradle @@ -5,11 +5,11 @@ plugins { id 'maven-publish' id 'com.diffplug.spotless' version '6.25.0' - id 'com.github.ben-manes.versions' version '0.51.0' + id 'com.github.ben-manes.versions' version '0.52.0' id 'com.jfrog.artifactory' version '5.2.5' id 'org.sonarqube' version '6.0.1.5171' id 'io.spring.dependency-management' version '1.1.7' - id 'org.springframework.boot' version '3.4.1' + id 'org.springframework.boot' version '3.4.2' id 'com.srcclr.gradle' version '3.1.12' } @@ -54,7 +54,7 @@ dependencies { // Misc. Services implementation group: 'io.kubernetes', name: 'client-java', version: '22.0.0' constraints { - implementation('org.bouncycastle:bcprov-jdk18on:1.79') { + implementation('org.bouncycastle:bcprov-jdk18on:1.80') { because 'https://broadworkbench.atlassian.net/browse/DCJ-275' } } @@ -63,7 +63,7 @@ dependencies { // Google dependencies // use common bom - implementation platform('com.google.cloud:libraries-bom:26.52.0') + implementation platform('com.google.cloud:libraries-bom:26.53.0') implementation group: 'com.google.cloud', name: 'google-cloud-core' implementation group: 'com.google.cloud', name: 'google-cloud-pubsub' api group: 'com.google.guava', name: 'guava' @@ -74,7 +74,7 @@ dependencies { // Terra libraries implementation group: 'org.broadinstitute.dsde.workbench', name: 'sam-client_2.13', version: 'v0.0.329' - var stairwayVersion= '1.1.17-SNAPSHOT' + var stairwayVersion= '1.1.18-SNAPSHOT' api "bio.terra:stairway-gcp:${stairwayVersion}" implementation "bio.terra:stairway-azure:${stairwayVersion}" @@ -87,7 +87,7 @@ dependencies { // Spring Boot 3.4.0 pulls in opentelemetry-bom 1.43.0. // We choose opentelemetry-instrumentation-bom-alpha:2.9.0-alpha because otel-instrumentation 2.9.0 targets otel 1.43.0. // When upgrading Spring Boot, re-check these versions. - implementation platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.9.0-alpha") + implementation platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.12.0-alpha") // ... versioned by Spring Boot api 'io.opentelemetry:opentelemetry-api' implementation 'io.opentelemetry:opentelemetry-exporter-logging'