diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2017-01-20 13:03:03 +0900 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2017-01-22 22:34:11 +0100 |
commit | dd5e500a57fce994331dd9c9a03cb9577998a4a8 (patch) | |
tree | 1f07d1b39663678832002f7e3965b0a96c3a5ed8 /org.eclipse.jgit.junit | |
parent | 131b09106f76cdfca1d7292f2cc39a35834c7a67 (diff) | |
download | jgit-dd5e500a57fce994331dd9c9a03cb9577998a4a8.tar.gz jgit-dd5e500a57fce994331dd9c9a03cb9577998a4a8.zip |
Format Bazel files with buildifier
Change-Id: I934114315d2c7cab917f1011b8e55c52367d429f
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'org.eclipse.jgit.junit')
-rw-r--r-- | org.eclipse.jgit.junit/BUILD | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/org.eclipse.jgit.junit/BUILD b/org.eclipse.jgit.junit/BUILD index e0b358ae31..6d6462d27d 100644 --- a/org.eclipse.jgit.junit/BUILD +++ b/org.eclipse.jgit.junit/BUILD @@ -1,12 +1,13 @@ -package(default_visibility = ['//visibility:public']) +package(default_visibility = ["//visibility:public"]) java_library( - name = 'junit', - srcs = glob(['src/**']), - resources = glob(['resources/**']), - resource_strip_prefix = 'org.eclipse.jgit.junit/resources', - deps = [ # We want these deps to be provided_deps - '//org.eclipse.jgit:jgit', - '@junit//jar', - ], + name = "junit", + srcs = glob(["src/**"]), + resource_strip_prefix = "org.eclipse.jgit.junit/resources", + resources = glob(["resources/**"]), + deps = [ + # We want these deps to be provided_deps + "//org.eclipse.jgit:jgit", + "@junit//jar", + ], ) |