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.archive | |
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.archive')
-rw-r--r-- | org.eclipse.jgit.archive/BUILD | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/org.eclipse.jgit.archive/BUILD b/org.eclipse.jgit.archive/BUILD index c74f6d8a20..e15fcfacea 100644 --- a/org.eclipse.jgit.archive/BUILD +++ b/org.eclipse.jgit.archive/BUILD @@ -1,15 +1,16 @@ -package(default_visibility = ['//visibility:public']) +package(default_visibility = ["//visibility:public"]) java_library( - name = 'jgit-archive', - srcs = glob( - ['src/**'], - exclude = ['src/org/eclipse/jgit/archive/FormatActivator.java'], - ), - resources = glob(['resources/**']), - resource_strip_prefix = 'org.eclipse.jgit.archive/resources', - deps = [ # We want these deps to be provided_deps - '//org.eclipse.jgit:jgit', - '@commons_compress//jar', - ], + name = "jgit-archive", + srcs = glob( + ["src/**"], + exclude = ["src/org/eclipse/jgit/archive/FormatActivator.java"], + ), + resource_strip_prefix = "org.eclipse.jgit.archive/resources", + resources = glob(["resources/**"]), + deps = [ + # We want these deps to be provided_deps + "//org.eclipse.jgit:jgit", + "@commons_compress//jar", + ], ) |