Skip to content

Commit

Permalink
[BEAM-14065] Upgrade vendored bytebuddy to version 1.12.8 (apache#17028)
Browse files Browse the repository at this point in the history
  • Loading branch information
cushon authored Mar 25, 2022
1 parent 0c93be1 commit 0b37864
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ include(":sdks:python:test-suites:tox:py37")
include(":sdks:python:test-suites:tox:py38")
include(":sdks:python:test-suites:tox:py39")
include(":vendor:grpc-1_43_2")
include(":vendor:bytebuddy-1_11_0")
include(":vendor:bytebuddy-1_12_8")
include(":vendor:calcite-1_28_0")
include(":vendor:guava-26_0-jre")
include(":website")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@

plugins { id("org.apache.beam.vendor-java") }

description = "Apache Beam :: Vendored Dependencies :: ByteBuddy :: 1.11.0"
description = "Apache Beam :: Vendored Dependencies :: ByteBuddy :: 1.12.0"

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

val vendorJava = project.extensions.extraProperties.get("vendorJava") as groovy.lang.Closure<*>
vendorJava(
mapOf(
"dependencies" to listOf("net.bytebuddy:byte-buddy:1.11.0"),
"dependencies" to listOf("net.bytebuddy:byte-buddy:1.12.0"),
"relocations" to mapOf(
"net.bytebuddy" to "org.apache.beam.vendor.bytebuddy.v1_11_0.net.bytebuddy"),
"net.bytebuddy" to "org.apache.beam.vendor.bytebuddy.v1_12_8.net.bytebuddy"),
"exclusions" to listOf(
"**/module-info.class"
),
"groupId" to group,
"artifactId" to "beam-vendor-bytebuddy-1_11_0",
"artifactId" to "beam-vendor-bytebuddy-1_12_8",
"version" to version
)
)

0 comments on commit 0b37864

Please sign in to comment.