Skip to content

Commit

Permalink
upgrade protobuf and exclude netty from AWS deps
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyajohnson committed Oct 13, 2022
1 parent 61d473a commit 6dfa538
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/any/shared-mvn-coords.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ ext {
// TODO: figure out way to keep this version in sync with netcdf-java version
// It is included in the netcdf-java-bom (via netcdf-java-platform), but we can't
// reference that version in a gradle build script (see gradle/any/protobuf.gradle)
depVersion.protobuf = '3.19.3'
depVersion.protobuf = '3.21.7'
}
4 changes: 3 additions & 1 deletion tds/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ dependencies {
// Allow for the use of AWS Security Token Service by cdm-s3
// version matches that used by netCDF-Java
// todo: remove once this is a runtime dependency of netCDF-Java
runtimeOnly 'software.amazon.awssdk:sts:2.17.156'
runtimeOnly ('software.amazon.awssdk:sts:2.17.156') {
exclude group: 'software.amazon.awssdk', module: 'netty-nio-client'
}

// DAP4 Dependencies (technically forward)
compile 'edu.ucar:d4cdm'
Expand Down

0 comments on commit 6dfa538

Please sign in to comment.