spring-integration-sftp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-sftp</artifactId> <version>2.2.7.RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-sftp</artifactId> <version>2.2.7.RELEASE</version> <name>Spring Integration SFTP Support</name> <description>Spring Integration SFTP Support</description> <url>https://github.com/SpringSource/spring-integration</url> <organization> <name>SpringSource</name> <url>http://springsource.org</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>markfisher</id> <name>Mark Fisher</name> <email>markfisher@vmware.com</email> </developer> <developer> <id>olegz</id> <name>Oleg Zhurakousky</name> <email>ozhurakousky@vmware.com</email> </developer> <developer> <id>garyrussell</id> <name>Gary Russell</name> <email>grussell@vmware.com</email> </developer> <developer> <id>ghillert</id> <name>Gunnar Hillert</name> <email>ghillert@vmware.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/SpringSource/spring-integration</connection> <developerConnection>scm:git:git://github.com/SpringSource/spring-integration</developerConnection> <url>https://github.com/SpringSource/spring-integration</url> </scm> <dependencies> <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-stream</artifactId> <version>2.2.7.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-file</artifactId> <version>2.2.7.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-core</artifactId> <version>2.2.7.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>3.1.3.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.45</version> <scope>compile</scope> </dependency> </dependencies> </project>