Skip to content

Commit

Permalink
Make soloader builds parsable
Browse files Browse the repository at this point in the history
Summary: Soloader oss tests don't seem to parse because a key has a '-' in it.

Reviewed By: mzlee

Differential Revision: D9770301

fbshipit-source-id: 8d89b42b98fec44944655a96d8827af804818718
  • Loading branch information
Jonathan Kim authored and facebook-github-bot committed Sep 11, 2018
1 parent ace1390 commit 1c3cb5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deps/BUCK
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
load("//oss_defs:soloader_defs.bzl", "define_list_deps_target", "maven_library")

maven_library(
name = "jsr-305",
name = "jsr_305",
artifact = "jsr305",
group = "com.google.code.findbugs",
scope = "provided",
Expand Down
4 changes: 2 additions & 2 deletions java/com/facebook/soloader/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fb_core_android_library(
),
proguard_config = "soloader.pro",
provided_deps = [
"//deps:jsr-305",
"//deps:jsr_305",
],
required_for_source_only_abi = True,
tests = [
Expand All @@ -29,6 +29,6 @@ fb_java_library(
name = "mapping-stub",
srcs = ["MergedSoMapping.java"],
provided_deps = [
"//deps:jsr-305",
"//deps:jsr_305",
],
)

0 comments on commit 1c3cb5e

Please sign in to comment.