Skip to content

Commit

Permalink
Harmonize external dependency names to use hyphen
Browse files Browse the repository at this point in the history
Change-Id: Ica25b94672a11e9cc2001b5a9d68fe981f22b7e0
  • Loading branch information
dpursehouse committed Oct 11, 2018
1 parent 3d8c781 commit ff72feb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions external_plugin_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ def external_plugin_deps():
artifact = "org.mockito:mockito-core:2.23.0",
sha1 = "497ddb32fd5d01f9dbe99a2ec790aeb931dff1b1",
deps = [
"@byte_buddy//jar",
"@byte_buddy_agent//jar",
"@byte-buddy//jar",
"@byte-buddy-agent//jar",
"@objenesis//jar",
],
)

BYTE_BUDDY_VERSION = "1.9.0"

maven_jar(
name = "byte_buddy",
name = "byte-buddy",
artifact = "net.bytebuddy:byte-buddy:" + BYTE_BUDDY_VERSION,
sha1 = "8cb0d5baae526c9df46ae17693bbba302640538b",
)

maven_jar(
name = "byte_buddy_agent",
name = "byte-buddy-agent",
artifact = "net.bytebuddy:byte-buddy-agent:" + BYTE_BUDDY_VERSION,
sha1 = "37b5703b4a6290be3fffc63ae9c6bcaaee0ff856",
)
Expand Down

0 comments on commit ff72feb

Please sign in to comment.