Merge "WORKSPACE: rename byte-buddy to bytebuddy"

This commit is contained in:
Han-Wen Nienhuys
2019-09-09 13:27:06 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 4 deletions

View File

@@ -1142,13 +1142,13 @@ maven_jar(
BYTE_BUDDY_VERSION = "1.9.7"
maven_jar(
name = "byte-buddy",
name = "bytebuddy",
artifact = "net.bytebuddy:byte-buddy:" + BYTE_BUDDY_VERSION,
sha1 = "8fea78fea6449e1738b675cb155ce8422661e237",
)
maven_jar(
name = "byte-buddy-agent",
name = "bytebuddy-agent",
artifact = "net.bytebuddy:byte-buddy-agent:" + BYTE_BUDDY_VERSION,
sha1 = "8e7d1b599f4943851ffea125fd9780e572727fc0",
)

View File

@@ -20,13 +20,13 @@ java_library(
java_library(
name = "byte-buddy",
data = ["//lib:LICENSE-Apache2.0"],
exports = ["@byte-buddy//jar"],
exports = ["@bytebuddy//jar"],
)
java_library(
name = "byte-buddy-agent",
data = ["//lib:LICENSE-Apache2.0"],
exports = ["@byte-buddy-agent//jar"],
exports = ["@bytebuddy-agent//jar"],
)
java_library(