
This version fixed some regressions from 1.0 release, most notably,
mina backend is fixed again: [1], [2]. It was reported, though,
that this backend is suffering from connection leaks: [3], [4].
Due to [5] we can now remove GerritServerSession, because we can
register listener for the CloseFuture directly on ServerSession.
Update to minor API changes: [6]. Particularly, Command#destroy()
throws now Exception, that gets propagated into runtime exception.
[1] https://issues.apache.org/jira/browse/SSHD-626
[2] https://issues.apache.org/jira/browse/SSHD-639
[3] https://issues.apache.org/jira/browse/SSHD-595
[4] https://issues.apache.org/jira/browse/DIRMINA-1021
[5] https://issues.apache.org/jira/browse/SSHD-652
[6] 97b73947d5
Change-Id: Ic0e0819b5ddd1bf96cd82f3a142bf1b3375a564a
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:1.2.0',
|
|
sha1 = '4bc24a8228ba83dac832680366cf219da71dae8e',
|
|
license = 'Apache2.0',
|
|
deps = [':core'],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'core',
|
|
id = 'org.apache.mina:mina-core:2.0.10',
|
|
sha1 = 'a1cb1136b104219d6238de886bf5a3ea4554eb58',
|
|
license = 'Apache2.0',
|
|
exclude = EXCLUDE,
|
|
)
|