Browse Source

Merge "Format BUILD files with buildifier"

stable-5.2
David Pursehouse 6 years ago committed by Gerrit Code Review @ Eclipse.org
parent
commit
c949da0d5f
  1. 4
      lib/BUILD
  2. 4
      org.eclipse.jgit.ssh.apache.test/BUILD
  3. 18
      org.eclipse.jgit.test/BUILD

4
lib/BUILD

@ -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"],
)

4
org.eclipse.jgit.ssh.apache.test/BUILD

@ -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",
],
)

18
org.eclipse.jgit.test/BUILD

@ -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,16 +63,16 @@ java_library(
srcs = glob(["src/org/eclipse/jgit/transport/ssh/*.java"]),
resource_strip_prefix = "org.eclipse.jgit.test/resources",
resources = RESOURCES,
visibility = [
"//org.eclipse.jgit.ssh.apache.test:__pkg__",
],
deps = [
"//lib:junit",
"//org.eclipse.jgit:jgit",
"//org.eclipse.jgit.junit:junit",
"//lib:jsch",
"//lib:junit",
"//lib:sshd-core",
"//lib:sshd-sftp",
],
visibility = [
"//org.eclipse.jgit.ssh.apache.test:__pkg__",
"//org.eclipse.jgit:jgit",
"//org.eclipse.jgit.junit:junit",
],
)

Loading…
Cancel
Save