08ea694499
Cross cell support in Buck is considered as experimental feature, with number of open issues: [1], [2], [3]. Moreover, to make Maven Central machinery work, it was needed to create symbolic links in source tree. That broke `buck targets` feature. Remove it for now, and re-consider to add it later. [1] https://github.com/facebook/buck/issues/656 [2] https://github.com/facebook/buck/issues/658 [3] https://github.com/facebook/buck/issues/717 Bug: Issue 3954 Change-Id: Ic621a07771f926001df181b46b2169e214ce208a
61 lines
1.3 KiB
Python
61 lines
1.3 KiB
Python
SRCS = glob(['src/main/java/**/*.java'])
|
|
|
|
java_library(
|
|
name = 'sshd',
|
|
srcs = SRCS,
|
|
deps = [
|
|
'//gerrit-extension-api:api',
|
|
'//gerrit-cache-h2:cache-h2',
|
|
'//gerrit-common:annotations',
|
|
'//gerrit-common:server',
|
|
'//gerrit-lucene:lucene',
|
|
'//gerrit-patch-jgit:server',
|
|
'//gerrit-reviewdb:server',
|
|
'//gerrit-server:server',
|
|
'//gerrit-util-cli:cli',
|
|
'//lib:args4j',
|
|
'//lib:gson',
|
|
'//lib:guava',
|
|
'//lib:gwtorm',
|
|
'//lib:jsch',
|
|
'//lib/auto:auto-value',
|
|
'//lib/commons:codec',
|
|
'//lib/dropwizard:dropwizard-core',
|
|
'//lib/guice:guice',
|
|
'//lib/guice:guice-assistedinject',
|
|
'//lib/guice:guice-servlet', # SSH should not depend on servlet
|
|
'//lib/jgit/org.eclipse.jgit:jgit',
|
|
'//lib/jgit/org.eclipse.jgit.archive:jgit-archive',
|
|
'//lib/log:api',
|
|
'//lib/log:log4j',
|
|
'//lib/mina:core',
|
|
'//lib/mina:sshd',
|
|
],
|
|
provided_deps = [
|
|
'//lib/bouncycastle:bcprov',
|
|
'//lib:servlet-api-3_1',
|
|
],
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
java_sources(
|
|
name = 'sshd-src',
|
|
srcs = SRCS,
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
java_test(
|
|
name = 'sshd_tests',
|
|
srcs = glob(
|
|
['src/test/java/**/*.java'],
|
|
),
|
|
deps = [
|
|
':sshd',
|
|
'//gerrit-extension-api:api',
|
|
'//gerrit-server:server',
|
|
'//lib:truth',
|
|
'//lib/mina:sshd',
|
|
],
|
|
source_under_test = [':sshd'],
|
|
)
|