fake-sftp-server-lambda
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.stefanbirkner</groupId>
<artifactId>fake-sftp-server-lambda</artifactId>
<version>2.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>com.github.stefanbirkner</groupId>
<artifactId>fake-sftp-server-lambda</artifactId>
<version>2.0.1</version>
<name>Fake SFTP Server Lambda</name>
<description>Fake SFTP Server Lambda runs an in-memory SFTP server while your tests are running.</description>
<url>https://github.com/stefanbirkner/fake-sftp-server-lambda/</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>stefanbirkner</id>
<name>Stefan Birkner</name>
<email>mail@stefan-birkner.de</email>
<url>http://www.stefan-birkner.de</url>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/stefanbirkner/fake-sftp-server-lambda.git</connection>
<developerConnection>scm:git:git@github.com:stefanbirkner/fake-sftp-server-lambda.git</developerConnection>
<url>https://github.com/stefanbirkner/fake-sftp-server-lambda/</url>
</scm>
<dependencies>
<dependency>
<groupId>com.github.marschall</groupId>
<artifactId>memoryfilesystem</artifactId>
<version>[0.8.0,)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-sftp</artifactId>
<version>[2.6.0,2.17.0),[2.17.1,)</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.7.3</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>