
Fixes a few issues including a null pointer exception [1] that causes ssh commands to hang. It also adds server driven rekeying after 1G bytes of data transferred, which is a useful security feature. [1] https://issues.apache.org/jira/browse/SSHD-307 Change-Id: I441995eaf76e4fe53f7991f5aef00e062900791b
25 lines
483 B
Python
25 lines
483 B
Python
include_defs('//lib/maven.defs')
|
|
|
|
EXCLUDE = [
|
|
'META-INF/DEPENDENCIES',
|
|
'META-INF/LICENSE',
|
|
'META-INF/NOTICE',
|
|
]
|
|
|
|
maven_jar(
|
|
name = 'sshd',
|
|
id = 'org.apache.sshd:sshd-core:0.11.0',
|
|
sha1 = '450da44553c98805ca6bb5709cad54df4acb802a',
|
|
license = 'Apache2.0',
|
|
deps = [':core'],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'core',
|
|
id = 'org.apache.mina:mina-core:2.0.7',
|
|
sha1 = 'c878e2aa82de748474a624ec3933e4604e446dec',
|
|
license = 'Apache2.0',
|
|
exclude = EXCLUDE,
|
|
)
|