70490cdf85
See release notes at [1]. Upgrade mina-core to 2.0.17 and also add new dependency sshd-mina. Given that sshd-core was split to small libraries sshd-sftp code was externalized. As the consequence we can now remove exclusion of FileSystemProvider service during fetching of sshd-core from Central. Also adapt the package name of Command related classes. [1] https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12342654&styleName=&projectId=12310849&Create=Create&atl_token=A5KQ-2QAV-T4JA-FDED%7Cf98d7b707f8df425b70a5596aff2a372f9525532%7Clout Feature: Issue 9757 Change-Id: I756e15155592a0f1a781258e78a94a324f0068d8
28 lines
553 B
Python
28 lines
553 B
Python
java_library(
|
|
name = "sshd",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
":eddsa",
|
|
"@sshd-mina//jar",
|
|
"@sshd//jar",
|
|
],
|
|
runtime_deps = [":core"],
|
|
)
|
|
|
|
java_library(
|
|
name = "eddsa",
|
|
data = ["//lib:LICENSE-CC0-1.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
"@eddsa//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "core",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@mina-core//jar"],
|
|
)
|