Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the root-gradle-deps group with 10 updates #1532

Closed
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {

dependencies {
// This dependency is used by the application.
implementation 'com.google.guava:guava:32.1.3-jre'
implementation 'com.google.guava:guava:33.0.0-jre'

// Use JUnit test framework
testImplementation 'junit:junit:4.13.2'
Expand Down
8 changes: 4 additions & 4 deletions load-generator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ repositories {

dependencies {
// This dependency is used by the application.
implementation "com.google.guava:guava:32.1.3-jre"
implementation "com.google.guava:guava:33.0.0-jre"

implementation "io.grpc:grpc-bom:1.60.0"
implementation "io.grpc:grpc-api:1.60.0"
implementation "io.grpc:grpc-bom:1.60.1"
implementation "io.grpc:grpc-api:1.60.1"

implementation "io.grpc:grpc-netty-shaded:1.60.0"
implementation "io.grpc:grpc-netty-shaded:1.60.1"

implementation platform("io.opentelemetry:opentelemetry-bom:1.33.0")
implementation "io.opentelemetry:opentelemetry-api"
Expand Down
6 changes: 3 additions & 3 deletions sample-apps/jaeger-zipkin-sample-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ application {
dependencies {
implementation "com.sparkjava:spark-core:2.9.4"
implementation "com.squareup.okhttp3:okhttp:4.12.0"
implementation "software.amazon.awssdk:s3:2.21.44"
implementation "io.grpc:grpc-api:1.60.0"
implementation "io.grpc:grpc-netty-shaded:1.60.0"
implementation "software.amazon.awssdk:s3:2.22.5"
implementation "io.grpc:grpc-api:1.60.1"
implementation "io.grpc:grpc-netty-shaded:1.60.1"
implementation "org.slf4j:slf4j-simple:2.0.9"

implementation project(":trace-java-client")
Expand Down
6 changes: 3 additions & 3 deletions trace-java-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ dependencies {
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.14.0'
implementation group: 'io.jaegertracing', name: 'jaeger-core', version: '1.8.1'
implementation group: 'io.jaegertracing', name: 'jaeger-thrift', version: '1.8.1'
implementation group: 'io.zipkin.zipkin2', name: 'zipkin', version: '2.25.0'
implementation group: 'io.zipkin.reporter2', name: 'zipkin-sender-okhttp3', version: '2.16.5'
implementation group: 'io.zipkin.brave', name: 'brave', version: '5.16.0'
implementation group: 'io.zipkin.zipkin2', name: 'zipkin', version: '2.25.2'
implementation group: 'io.zipkin.reporter2', name: 'zipkin-sender-okhttp3', version: '2.17.1'
implementation group: 'io.zipkin.brave', name: 'brave', version: '5.17.0'

}

Expand Down
4 changes: 2 additions & 2 deletions validator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
implementation group: 'commons-io', name: 'commons-io', version: '2.15.1'

// yaml reader
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.16.0'
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.16.1'

// json flattener
implementation group: 'com.github.wnameless', name: 'json-flattener', version: '0.7.1'
Expand All @@ -47,7 +47,7 @@ dependencies {
compileOnly 'info.picocli:picocli-codegen:4.7.5'

// aws sdk
implementation platform('com.amazonaws:aws-java-sdk-bom:1.12.618')
implementation platform('com.amazonaws:aws-java-sdk-bom:1.12.625')
implementation 'com.amazonaws:aws-java-sdk-s3'
implementation 'com.amazonaws:aws-java-sdk-cloudwatch'
implementation 'com.amazonaws:aws-java-sdk-xray'
Expand Down
Loading