summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@gmail.com>2019-09-08 22:30:19 +0900
committerDavid Pursehouse <david.pursehouse@gmail.com>2019-09-08 22:30:19 +0900
commitf042270e65bbb62dd50aeb5bf8c5f8e181acdebb (patch)
tree84b0f209e76a90edf55b4aeb81fa3d7652eef624
parente626c55936a6e5a969bb720c26db9e4434c46edc (diff)
downloadjgit-f042270e65bbb62dd50aeb5bf8c5f8e181acdebb.tar.gz
jgit-f042270e65bbb62dd50aeb5bf8c5f8e181acdebb.zip
Format BUILD files with buildifier
Using buildifier from master branch and the command: $ buildifier -r -lint fix -warnings all . Change-Id: I19c8ff183081093cb73bed7221a78a91b6cba4dc Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
-rw-r--r--org.eclipse.jgit.http.test/BUILD2
-rw-r--r--org.eclipse.jgit.lfs.server.test/BUILD2
-rw-r--r--org.eclipse.jgit.pgm.test/BUILD2
-rw-r--r--org.eclipse.jgit.test/BUILD4
4 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.jgit.http.test/BUILD b/org.eclipse.jgit.http.test/BUILD
index 95ed575784..09316adc6f 100644
--- a/org.eclipse.jgit.http.test/BUILD
+++ b/org.eclipse.jgit.http.test/BUILD
@@ -1,8 +1,8 @@
-load("@rules_java//java:defs.bzl", "java_library")
load(
"@com_googlesource_gerrit_bazlets//tools:junit.bzl",
"junit_tests",
)
+load("@rules_java//java:defs.bzl", "java_library")
junit_tests(
name = "http",
diff --git a/org.eclipse.jgit.lfs.server.test/BUILD b/org.eclipse.jgit.lfs.server.test/BUILD
index 9460f6f9d1..76a0870a88 100644
--- a/org.eclipse.jgit.lfs.server.test/BUILD
+++ b/org.eclipse.jgit.lfs.server.test/BUILD
@@ -1,8 +1,8 @@
-load("@rules_java//java:defs.bzl", "java_library")
load(
"@com_googlesource_gerrit_bazlets//tools:junit.bzl",
"junit_tests",
)
+load("@rules_java//java:defs.bzl", "java_library")
TEST_BASE = ["tst/org/eclipse/jgit/lfs/server/fs/LfsServerTest.java"]
diff --git a/org.eclipse.jgit.pgm.test/BUILD b/org.eclipse.jgit.pgm.test/BUILD
index 5ccd457089..86413b5ff8 100644
--- a/org.eclipse.jgit.pgm.test/BUILD
+++ b/org.eclipse.jgit.pgm.test/BUILD
@@ -1,8 +1,8 @@
-load("@rules_java//java:defs.bzl", "java_library")
load(
"@com_googlesource_gerrit_bazlets//tools:junit.bzl",
"junit_tests",
)
+load("@rules_java//java:defs.bzl", "java_library")
junit_tests(
name = "pgm",
diff --git a/org.eclipse.jgit.test/BUILD b/org.eclipse.jgit.test/BUILD
index da88862bfa..91456711d6 100644
--- a/org.eclipse.jgit.test/BUILD
+++ b/org.eclipse.jgit.test/BUILD
@@ -1,9 +1,9 @@
-load("@rules_java//java:defs.bzl", "java_import", "java_library")
-load(":tests.bzl", "tests")
load(
"@com_googlesource_gerrit_bazlets//tools:genrule2.bzl",
"genrule2",
)
+load("@rules_java//java:defs.bzl", "java_import", "java_library")
+load(":tests.bzl", "tests")
PKG = "tst/org/eclipse/jgit/"