You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ke...@apache.org on 2019/05/22 16:03:54 UTC

[beam] branch master updated: [BEAM-5822] Vendor bytebuddy (#8357)

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

kenn 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 74d8727  [BEAM-5822] Vendor bytebuddy (#8357)
74d8727 is described below

commit 74d87274da03044163652b5d740d19dc70c63073
Author: Kai Jiang <ji...@gmail.com>
AuthorDate: Wed May 22 09:03:35 2019 -0700

    [BEAM-5822] Vendor bytebuddy (#8357)
---
 settings.gradle                     |  3 ++-
 vendor/bytebuddy-1_9_3/build.gradle | 34 ++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+), 1 deletion(-)

diff --git a/settings.gradle b/settings.gradle
index a24642b..64cd970 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -116,6 +116,7 @@ include ":sdks:java:io:xml"
 include ":sdks:java:io:synthetic"
 include ":sdks:java:javadoc"
 include ":sdks:java:testing:load-tests"
+include ":sdks:java:testing:test-utils"
 include ":sdks:java:maven-archetypes:examples"
 include ":sdks:java:maven-archetypes:starter"
 include ":sdks:java:testing:nexmark"
@@ -134,7 +135,7 @@ include ":sdks:python:test-suites:tox:py35"
 include ":sdks:python:test-suites:tox:py36"
 include ":sdks:python:test-suites:tox:py37"
 include ":vendor:grpc-1_13_1"
-include ":sdks:java:testing:test-utils"
+include ":vendor:bytebuddy-1_9_3"
 include ":vendor:sdks-java-extensions-protobuf"
 include ":vendor:guava-20_0"
 include ":website"
diff --git a/vendor/bytebuddy-1_9_3/build.gradle b/vendor/bytebuddy-1_9_3/build.gradle
new file mode 100644
index 0000000..73bf327
--- /dev/null
+++ b/vendor/bytebuddy-1_9_3/build.gradle
@@ -0,0 +1,34 @@
+/*
+ * 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.9.3"
+
+group = "org.apache.beam"
+version = "0.1"
+
+vendorJava(
+  dependencies: ["net.bytebuddy:byte-buddy:1.9.3"],
+  relocations: [
+    "net.bytebuddy": "org.apache.beam.vendor.bytebuddy.v1_9_3.net.bytebuddy"
+  ],
+  groupId: group,
+  artifactId: "beam-vendor-bytebuddy-1_9_3",
+  version: version
+)