1e9338854c
This allows use the standard git archive command to create an archive of the content of a repository: $ git archive -f tar.bz2 --prefix=foo-1.0/ \ --remote=ssh://john@gerrit:29418/foo \ refs/changes/73/673/1 > foo-1.0.tar.bz2 Different compression levels can be configured for zip format: $ git archive -f zip -9 \ --remote=ssh://john@gerrit:29418/foo \ refs/changes/73/673/1 > foo.zip TEST PLAN: buck test --include ssh Bug: Issue 2061 Change-Id: Ifc1a92bacef3155cf474adee883cbe587dd8759f
60 lines
1.2 KiB
Python
60 lines
1.2 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-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/commons:collections',
|
|
'//lib/guice:guice',
|
|
'//lib/guice:guice-assistedinject',
|
|
'//lib/guice:guice-servlet', # SSH should not depend on servlet
|
|
'//lib/log:api',
|
|
'//lib/log:log4j',
|
|
'//lib/mina:core',
|
|
'//lib/mina:sshd',
|
|
'//lib/jgit:jgit',
|
|
'//lib/jgit:jgit-archive',
|
|
],
|
|
provided_deps = [
|
|
'//lib/bouncycastle:bcprov',
|
|
],
|
|
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:guava',
|
|
'//lib:junit',
|
|
'//lib/mina:sshd',
|
|
],
|
|
source_under_test = [':sshd'],
|
|
)
|