Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,10 @@ allprojects {
// cloud and SequenceAnalysis bring this in as a transitive dependency. We resolve to the later version here to keep things consistent
force "com.google.code.gson:gson:${gsonVersion}"

// docker and cloud bring in different versions
force "jakarta.ws.rs:jakarta.ws.rs-api:${jakartaWsRsApiVersion}"
force "jakarta.annotation:jakarta.annotation-api:${jakartaWsAnnotationApiVersion}"

// Google oauth2-http Library and api-common (via Picard, and perhaps others) bring in different versions; force the latest
force "com.google.auto.value:auto-value-annotations:${googleAutoValueAnnotationsVersion}"
force "com.google.http-client:google-http-client-apache-v2:${googleHttpClientVersion}"
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,7 @@ googleProtocolBufVersion=3.25.5
graalVersion=24.1.1

# Cloud and SequenceAnalysis bring gson in as a transitive dependency.
# We resolve to the later version here to keep things consistent
# Note: Current jclouds seems to require 2.8.9; attempting to upgrade to 2.9.0 cratered the S3 test suite with many
# "java.lang.NoSuchMethodError: 'void com.google.gson.internal.ConstructorConstructor.<init>(java.util.Map)'" errors
gsonVersion=2.8.9
gsonVersion=2.11.0

grpcVersion=1.67.1

Expand Down Expand Up @@ -196,6 +193,9 @@ jacksonAnnotationsVersion=2.18.0
jacksonDatabindVersion=2.18.0
jacksonJaxrsBaseVersion=2.18.0

jakartaWsRsApiVersion=3.0.0
jakartaWsAnnotationApiVersion=2.0.0

jamaVersion=1.0.3

javassistVersion=3.20.0-GA
Expand Down