3d9c70c14e
Long standing exhausting thread pool SSHD bug was apparently fixed upstream [1]. All Gerrit releases since 2.8.5 are known to suffer from this problem with the consequence that Gerrit must be restarted overnight. [1] https://issues.apache.org/jira/browse/SSHD-348 Change-Id: Ic52277050aa0cd19b19531ee997d312fd7273ebc
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.13.0',
|
|
sha1 = 'c616c5865cc55473c6d63c6fcf46e60d382be172',
|
|
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,
|
|
)
|