Skip to content

Commit

Permalink
[BEAM-5559] Upgrade version of guava to 32.1.1-jre for all vendored a…
Browse files Browse the repository at this point in the history
…rtifacts containing guava (apache#27766)
  • Loading branch information
hlteoh37 authored Aug 3, 2023
1 parent 39d3c6f commit 5d32ae2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ import org.gradle.api.publish.maven.MavenPublication
* <li>Increment the vendored artifact version only if we need to release a new version.
* </ul>
*
* <p>Example for com.google.guava:guava:26.0-jre:
* <p>Example for com.google.guava:guava:32.1.2-jre:
* <ul>
* <li>groupId: org.apache.beam
* <li>artifactId: guava-26_0-jre
* <li>namespace: org.apache.beam.vendor.guava.v26_0_jre
* <li>artifactId: guava-32_1_2-jre
* <li>namespace: org.apache.beam.vendor.guava.v32_1_2_jre
* <li>version: 0.1
* </ul>
*
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ include(":sdks:typescript:container")
include(":vendor:bytebuddy-1_12_8")
include(":vendor:grpc-1_54_0")
include(":vendor:calcite-1_28_0")
include(":vendor:guava-26_0-jre")
include(":vendor:guava-32_1_2-jre")
include(":website")
include(":runners:google-cloud-dataflow-java:worker")
include(":runners:google-cloud-dataflow-java:worker:windmill")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@

plugins { id 'org.apache.beam.vendor-java' }

description = "Apache Beam :: Vendored Dependencies :: Guava 26.0-jre"
description = "Apache Beam :: Vendored Dependencies :: Guava 32.1.2-jre"

group = "org.apache.beam"
version = "0.1"

vendorJava(
dependencies: ["com.google.guava:guava:26.0-jre"],
dependencies: ["com.google.guava:guava:32.1.2-jre"],
relocations: [
"com.google.common": "org.apache.beam.vendor.guava.v26_0_jre.com.google.common",
"com.google.thirdparty": "org.apache.beam.vendor.guava.v26_0_jre.com.google.thirdparty",
"com.google.common": "org.apache.beam.vendor.guava.v32_1_2_jre.com.google.common",
"com.google.thirdparty": "org.apache.beam.vendor.guava.v32_1_2_jre.com.google.thirdparty",
],
exclusions: [
"com/google/errorprone/**",
Expand All @@ -37,6 +37,6 @@ vendorJava(
"org/codehaus/mojo/animal_sniffer/**",
],
groupId: group,
artifactId: "beam-vendor-guava-26_0-jre",
artifactId: "beam-vendor-guava-32_1_2-jre",
version: version,
)

0 comments on commit 5d32ae2

Please sign in to comment.