
This version includes several bug fixes and improvements. See the release note [1] for details. Many packages have been renamed, and some classes removed. FileKeyPairProvider was removed from the SSHD library, so we need to borrow it from the previous release. We preserve the license, that is the same as Gerrit Code Review, the header and the indentation. Compilation warnings are fixed, mostly by adding missing @Override annotations. [1] https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12323302&styleName=Html&projectId=12310849 Change-Id: If047c3a279fc9c98a59ac3102b0db3f5f2fdae48
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.0.0',
|
|
sha1 = '448ae95811a993575cc465e1c60ef741632b2ce8',
|
|
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,
|
|
)
|