You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lc...@apache.org on 2022/08/05 15:46:08 UTC

[beam] branch master updated: [BEAM-14117] Delete vendored bytebuddy gradle build (#22594)

This is an automated email from the ASF dual-hosted git repository.

lcwik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 6910d770b76 [BEAM-14117] Delete vendored bytebuddy gradle build (#22594)
6910d770b76 is described below

commit 6910d770b76d14558da4fee27b66601b4989440e
Author: Luke Cwik <lc...@google.com>
AuthorDate: Fri Aug 5 08:45:59 2022 -0700

    [BEAM-14117] Delete vendored bytebuddy gradle build (#22594)
---
 settings.gradle.kts                      |  1 -
 vendor/bytebuddy-1_12_8/build.gradle.kts | 39 --------------------------------
 2 files changed, 40 deletions(-)

diff --git a/settings.gradle.kts b/settings.gradle.kts
index 5a35c29f2e1..2b2e6bd09e9 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -238,7 +238,6 @@ 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_12_8")
 include(":vendor:calcite-1_28_0")
 include(":vendor:guava-26_0-jre")
 include(":website")
diff --git a/vendor/bytebuddy-1_12_8/build.gradle.kts b/vendor/bytebuddy-1_12_8/build.gradle.kts
deleted file mode 100644
index 5f04db922b2..00000000000
--- a/vendor/bytebuddy-1_12_8/build.gradle.kts
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * License); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-plugins { id("org.apache.beam.vendor-java") }
-
-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.12.0"),
-    "relocations" to mapOf(
-            "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_12_8",
-    "version" to version
-  )
-)