Files
gerrit/gerrit-sshd/BUILD
David Pursehouse 6ae012e010 Merge branch 'stable-2.14' into stable-2.15
* stable-2.14:
  Update Eclipse compiler settings with Oxygen.3a Release (4.7.3a)
  Introduce mechanism to overload Gerrit core modules
  Move default memory cache implementation out of H2 package
  Introduce CacheImpl annotation
  Untangle persistent/memory cache implementations from each other
  H2CacheFactory: update internal caches list synchronously

Change-Id: I6c0952771b4e630a6628355f8cb2972ab7d12419
2018-05-16 08:15:29 +09:00

57 lines
1.5 KiB
Python

load("//tools/bzl:junit.bzl", "junit_tests")
SRCS = glob(["src/main/java/**/*.java"])
java_library(
name = "sshd",
srcs = SRCS,
visibility = ["//visibility:public"],
deps = [
"//gerrit-cache-h2:cache-h2",
"//gerrit-cache-mem:mem",
"//gerrit-common:annotations",
"//gerrit-common:server",
"//gerrit-extension-api:api",
"//gerrit-lucene:lucene",
"//gerrit-patch-jgit:server",
"//gerrit-reviewdb:server",
"//gerrit-server:metrics",
"//gerrit-server:receive",
"//gerrit-server:server",
"//gerrit-util-cli:cli",
"//lib:args4j",
"//lib:gson",
"//lib:guava",
"//lib:gwtorm",
"//lib:jsch",
"//lib:servlet-api-3_1",
"//lib/auto:auto-value",
"//lib/bouncycastle:bcprov-neverlink",
"//lib/commons:codec",
"//lib/dropwizard:dropwizard-core",
"//lib/guice",
"//lib/guice:guice-assistedinject",
"//lib/guice:guice-servlet", # SSH should not depend on servlet
"//lib/jgit/org.eclipse.jgit.archive:jgit-archive",
"//lib/jgit/org.eclipse.jgit:jgit",
"//lib/log:api",
"//lib/log:log4j",
"//lib/mina:core",
"//lib/mina:sshd",
],
)
junit_tests(
name = "sshd_tests",
srcs = glob(
["src/test/java/**/*.java"],
),
deps = [
":sshd",
"//gerrit-extension-api:api",
"//gerrit-server:server",
"//lib:truth",
"//lib/mina:sshd",
],
)