Maven Wagon SSH External Provider.
Wagon that gets and puts artifacts using SSH protocol with a preinstalled SSH client.
Here is the list of declaration for wagon-ssh-external. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> <version>1.0-beta-2</version> </dependency>
If you think this Maven repository POM file listing for wagon-ssh-external is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the wagon-ssh-external-1.0-beta-2.jar
The following packages are defined in the wagon-ssh-external-1.0-beta-2.jar
org.apache.maven.wagon.providers.ssh.external
Here is the content of the POM file.
<?xml version="1.0"?><project> <parent> <artifactId>wagon-providers</artifactId> <groupId>org.apache.maven.wagon</groupId> <version>1.0-beta-2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>wagon-ssh-external</artifactId> <name>Maven Wagon SSH External Provider</name> <version>1.0-beta-2</version> <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>**/Scp*Test.*</exclude> <exclude>**/SshCommandExecutorTest.*</exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-common</artifactId> </dependency> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-common-test</artifactId> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <status>deployed</status> </distributionManagement> </project>