SFTP Consumer/Sink

Resolves https://github.com/spring-cloud/stream-applications/issues/32
This commit is contained in:
Soby Chacko
2020-05-12 20:32:16 -04:00
committed by Gary Russell
parent 566d411a61
commit 5ba3d7ac66
13 changed files with 1004 additions and 0 deletions

View File

@@ -13,6 +13,10 @@
<relativePath>../../spring-functions-parent</relativePath>
</parent>
<properties>
<sshd-core.version>1.6.0</sshd-core.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.ftpserver</groupId>
@@ -35,6 +39,11 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-core</artifactId>
<version>${sshd-core.version}</version>
</dependency>
</dependencies>
</project>