diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2018-11-14 00:27:01 -0500 |
---|---|---|
committer | Gerrit Code Review @ Eclipse.org <gerrit@eclipse.org> | 2018-11-14 00:27:01 -0500 |
commit | c949da0d5f375415fba44080ee39d54ad6aab677 (patch) | |
tree | c3e4d30bb7d46b21cae674b2d1be964905044421 /org.eclipse.jgit.test | |
parent | ec1116627f251dbc434111840111a417263403ee (diff) | |
parent | f4c0189f25f3488c5702985d7b860f77883b2632 (diff) | |
download | jgit-c949da0d5f375415fba44080ee39d54ad6aab677.tar.gz jgit-c949da0d5f375415fba44080ee39d54ad6aab677.zip |
Merge "Format BUILD files with buildifier"
Diffstat (limited to 'org.eclipse.jgit.test')
-rw-r--r-- | org.eclipse.jgit.test/BUILD | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.jgit.test/BUILD b/org.eclipse.jgit.test/BUILD index 7165651496..32ec91dccc 100644 --- a/org.eclipse.jgit.test/BUILD +++ b/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", ], ) |