e2921b62f6
All versions of SSHD since release 0.10 were suffering from exhaustion of thread pool. Number of valuable features had to be reverted to downgrade the SSHD version to 0.9. This blocking bug [1] was fixed [2] and released in 0.14.0. Update to the new version of SSHD and revert the downgrade. This reverts commit bde8e9ac6f26a85c1a757ac0fa298f8b0c3c5783. [1] https://issues.apache.org/jira/browse/SSHD-348 [2] https://git-wip-us.apache.org/repos/asf?p=mina-sshd.git;a=commitdiff;h=964e76890cf56da4491199860d0ea8276fbd26a6 Change-Id: Ib5faf1df0cb6bde2e2cd554c9311cc5e55095b04
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.14.0',
|
|
sha1 = 'cb12fa1b1b07fb5ce3aa4f99b189743897bd4fca',
|
|
license = 'Apache2.0',
|
|
deps = [':core'],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'core',
|
|
id = 'org.apache.mina:mina-core:2.0.8',
|
|
sha1 = 'd6ff69fa049aeaecdf0c04cafbb1ab53b7487883',
|
|
license = 'Apache2.0',
|
|
exclude = EXCLUDE,
|
|
)
|