gatling-sftp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.fherbreteau</groupId> <artifactId>gatling-sftp</artifactId> <version>0.0.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.fherbreteau</groupId> <artifactId>gatling-sftp</artifactId> <version>0.0.8</version> <name>SFTP plugin</name> <description>SFTP plugin for Gatling</description> <url>${project.scm.url}</url> <properties> <java.version>11</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-jar-plugin.version>3.4.2</maven-jar-plugin.version> <maven-scala-plugin.version>4.9.2</maven-scala-plugin.version> <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> <maven-deploy-plugin.version>1.7.0</maven-deploy-plugin.version> <maven-release-plugin.version>3.1.1</maven-release-plugin.version> <gatling.version>3.13.1</gatling.version> <apache.sshd.version>2.14.0</apache.sshd.version> <commons.io.version>2.18.0</commons.io.version> <sonar.organization>fherbreteau</sonar.organization> <sonar.projectKey>fherbreteau_gatling-sftp</sonar.projectKey> <sonar.host.url>https://sonarcloud.io</sonar.host.url> </properties> <dependencies> <!-- Gatling dependencies --> <dependency> <groupId>io.gatling</groupId> <artifactId>gatling-core-java</artifactId> <version>${gatling.version}</version> </dependency> <dependency> <groupId>io.gatling.highcharts</groupId> <artifactId>gatling-charts-highcharts</artifactId> <version>${gatling.version}</version> </dependency> <!-- Apache Mina SSH --> <dependency> <groupId>org.apache.sshd</groupId> <artifactId>sshd-core</artifactId> <version>${apache.sshd.version}</version> </dependency> <dependency> <groupId>org.apache.sshd</groupId> <artifactId>sshd-sftp</artifactId> <version>${apache.sshd.version}</version> </dependency> <!-- Commons io --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons.io.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>${maven-scala-plugin.version}</version> <executions> <execution> <id>scala-compile</id> <phase>process-sources</phase> <goals> <goal>add-source</goal> <goal>compile</goal> </goals> </execution> <execution> <id>scala-test-compile</id> <phase>process-test-resources</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <executions> <execution> <id>default-compile</id> <phase>none</phase> </execution> <execution> <id>default-testCompile</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <scmCommentPrefix>[ci skip]</scmCommentPrefix> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <executions> <execution> <id>empty-javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${basedir}/javadoc</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <developers> <developer> <id>fherbreteau</id> <name>François Herbreteau</name> <email>fherbreteau@gmail.com</email> <roles> <role>Maintainer</role> </roles> <timezone>Europe/Paris</timezone> </developer> </developers> <scm> <connection>scm:git:${project.scm.url}.git</connection> <developerConnection>scm:git:${project.scm.url}.git</developerConnection> <url>https://github.com/fherbreteau/gatling-sftp</url> <tag>0.0.8</tag> </scm> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> </project>