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 #1438

Merged
merged 1 commit into from
Oct 11, 2023
Merged
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: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
plugins {
// Apply the java plugin to add support for Java
id 'java'
id 'com.github.ben-manes.versions' version '0.48.0'
id 'com.github.ben-manes.versions' version '0.49.0'
id 'se.patrikerdes.use-latest-versions' version '0.2.18'

}
Expand All @@ -20,7 +20,7 @@ repositories {

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

// Use JUnit test framework
testImplementation 'junit:junit:4.13.2'
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/jaeger-zipkin-sample-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {

// Apply the application plugin to add support for building a CLI application.
id 'application'
id 'com.google.cloud.tools.jib' version "3.3.2"
id 'com.google.cloud.tools.jib' version "3.4.0"
}

group 'com.amazon.sampleapp'
Expand Down Expand Up @@ -37,7 +37,7 @@ application {
dependencies {
implementation "com.sparkjava:spark-core:2.9.4"
implementation "com.squareup.okhttp3:okhttp:4.11.0"
implementation "software.amazon.awssdk:s3:2.20.150"
implementation "software.amazon.awssdk:s3:2.20.162"
implementation "io.grpc:grpc-api:1.58.0"
implementation "io.grpc:grpc-netty-shaded:1.58.0"
implementation "org.slf4j:slf4j-simple:2.0.9"
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
plugins {
id("com.google.cloud.tools.jib") version "3.3.2"
id("com.google.cloud.tools.jib") version "3.4.0"
}
}
rootProject.name = 'aws-otel-test-framework'
Expand Down
14 changes: 7 additions & 7 deletions validator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ plugins {
id 'java'

id 'application'
id 'com.google.cloud.tools.jib' version "3.3.2"
id 'com.google.cloud.tools.jib' version "3.4.0"

// lombok
id "io.freefair.lombok" version "8.3"
id("com.diffplug.spotless") version "6.21.0"
id "io.freefair.lombok" version "8.4"
id("com.diffplug.spotless") version "6.22.0"

}

Expand All @@ -29,10 +29,10 @@ dependencies {
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.20.0'

// mustache template
implementation group: 'com.github.spullara.mustache.java', name: 'compiler', version: '0.9.10'
implementation group: 'com.github.spullara.mustache.java', name: 'compiler', version: '0.9.11'

// apache io utils
implementation group: 'commons-io', name: 'commons-io', version: '2.13.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.14.0'

// yaml reader
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.15.2'
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.553')
implementation platform('com.amazonaws:aws-java-sdk-bom:1.12.565')
implementation 'com.amazonaws:aws-java-sdk-s3'
implementation 'com.amazonaws:aws-java-sdk-cloudwatch'
implementation 'com.amazonaws:aws-java-sdk-xray'
Expand All @@ -69,7 +69,7 @@ dependencies {
compileOnly 'info.picocli:picocli-codegen:4.7.5'

// mockito
testImplementation "org.mockito:mockito-core:5.5.0"
testImplementation "org.mockito:mockito-core:5.6.0"

// k8s client
implementation "io.kubernetes:client-java-extended:18.0.1"
Expand Down
Loading