blob: d99db1070eaf82364f0d8f95691a733896ef01a9 [file] [log] [blame]
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>wagon-providers</artifactId>
<groupId>org.apache.maven.wagon</groupId>
<version>1.0-beta-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wagon-ssh-external</artifactId>
<name>Maven Wagon SSH External Provider</name>
<description>
Wagon that gets and puts artifacts using SSH protocol with a preinstalled SSH client
</description>
<issueManagement>
<system>jira</system>
<url>http://jira.codehaus.org/browse/WAGONSSH</url>
</issueManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/ScpExternalWagon*Test.*</exclude>
<exclude>**/SshCommandExecutorTest.*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
</dependencies>
</project>