Skip to content

Commit

Permalink
Update guava version to 32.1.2-jre (#7534)
Browse files Browse the repository at this point in the history
Fixes #7525
  • Loading branch information
eddumelendez committed Sep 26, 2023
1 parent 95b2af9 commit e5df6ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {

dependencies {
// https://github.com/melix/japicmp-gradle-plugin/issues/36
classpath 'com.google.guava:guava:30.1.1-jre'
classpath 'com.google.guava:guava:32.1.2-jre'
classpath 'com.github.tjni.captainhook:captain-hook:0.1.5'
}
}
Expand Down
9 changes: 7 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,22 @@ dependencies {

api "com.github.docker-java:docker-java-api"

shaded 'com.github.docker-java:docker-java-core'
shaded('com.github.docker-java:docker-java-core') {
exclude group: 'com.google.guava', module: 'guava'
}

api 'com.github.docker-java:docker-java-transport-zerodep'

shaded 'com.google.guava:guava:32.1.2-jre'
shaded "org.yaml:snakeyaml:1.33"

shaded 'org.glassfish.main.external:trilead-ssh2-repackaged:4.1.2'

shaded 'org.zeroturnaround:zt-exec:1.12'

testImplementation 'com.google.cloud.tools:jib-core:0.23.0'
testImplementation('com.google.cloud.tools:jib-core:0.23.0') {
exclude group: 'com.google.guava', module: 'guava'
}
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
testImplementation 'redis.clients:jedis:5.0.0'
testImplementation 'com.rabbitmq:amqp-client:5.18.0'
Expand Down

0 comments on commit e5df6ef

Please sign in to comment.