quarkiverse / quarkus-sshd

Provide basic support of Apache Mina SSHD in Quarkus.
https://mina.apache.org/sshd-project/
Apache License 2.0
1 stars 2 forks source link

Add SFTP support #74

Closed erik-wramner closed 3 weeks ago

erik-wramner commented 3 weeks ago

I need to embed an SFTP server in a Quarkus application. This seems to be the best option, except that it only includes the core server, not the SFTP subsystem. I can include the subsystem separately (normal dependency), but that does not feel ideal. I bet it includes things that need to be adjusted to support native images.

Now, I can either try to get it working as part of this project, or I can write a new public or private extension focusing on the SFTP server. What would you like? If people are using this just for SSH they may not want the extra classes, but on the other hand SFTP is very commonly used with SSH.

What do you think?

erik-wramner commented 3 weeks ago

We went with another library instead, figuring it would take too much time to get this production ready in native mode.