Format BUILD files with buildifier

Change-Id: I7eb83e0560b1826c4f8567e9bc5fbdb2ae3fe9d0
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2018-11-13 18:01:21 -08:00
parent 63a87b398f
commit f4c0189f25
3 changed files with 15 additions and 15 deletions

View File

@ -62,9 +62,9 @@ java_library(
name = "sshd-core",
visibility = [
"//org.eclipse.jgit.junit:__pkg__",
"//org.eclipse.jgit.test:__pkg__",
"//org.eclipse.jgit.ssh.apache:__pkg__",
"//org.eclipse.jgit.ssh.apache.test:__pkg__",
"//org.eclipse.jgit.test:__pkg__",
],
exports = ["@sshd-core//jar"],
)
@ -73,9 +73,9 @@ java_library(
name = "sshd-sftp",
visibility = [
"//org.eclipse.jgit.junit:__pkg__",
"//org.eclipse.jgit.test:__pkg__",
"//org.eclipse.jgit.ssh.apache:__pkg__",
"//org.eclipse.jgit.ssh.apache.test:__pkg__",
"//org.eclipse.jgit.test:__pkg__",
],
exports = ["@sshd-sftp//jar"],
)

View File

@ -8,11 +8,11 @@ junit_tests(
srcs = glob(["tst/**/*.java"]),
tags = ["sshd"],
deps = [
"//org.eclipse.jgit.test:sshd-helpers",
"//lib:junit",
"//org.eclipse.jgit:jgit",
"//lib:sshd-core",
"//lib:sshd-sftp",
"//org.eclipse.jgit:jgit",
"//org.eclipse.jgit.ssh.apache:ssh-apache",
"//org.eclipse.jgit.test:sshd-helpers",
],
)

View File

@ -7,9 +7,9 @@ load(
PKG = "tst/org/eclipse/jgit/"
HELPERS = glob(
["src/**/*.java"],
exclude = ["src/org/eclipse/jgit/transport/ssh/*.java"]
) + [PKG + c for c in [
["src/**/*.java"],
exclude = ["src/org/eclipse/jgit/transport/ssh/*.java"],
) + [PKG + c for c in [
"api/AbstractRemoteCommandTest.java",
"diff/AbstractDiffTestCase.java",
"internal/storage/file/GcTestCase.java",
@ -63,17 +63,17 @@ java_library(
srcs = glob(["src/org/eclipse/jgit/transport/ssh/*.java"]),
resource_strip_prefix = "org.eclipse.jgit.test/resources",
resources = RESOURCES,
deps = [
"//lib:junit",
"//org.eclipse.jgit:jgit",
"//org.eclipse.jgit.junit:junit",
"//lib:jsch",
"//lib:sshd-core",
"//lib:sshd-sftp",
],
visibility = [
"//org.eclipse.jgit.ssh.apache.test:__pkg__",
],
deps = [
"//lib:jsch",
"//lib:junit",
"//lib:sshd-core",
"//lib:sshd-sftp",
"//org.eclipse.jgit:jgit",
"//org.eclipse.jgit.junit:junit",
],
)
java_import(