<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">
	<modelVersion>4.0.0</modelVersion>
	<description>Execute shell scripts on remote host
using ssh (pre and post build).
Based on the cool scp plugin.</description>
	<parent>
		<groupId>org.jvnet.hudson.plugins</groupId>
		<artifactId>plugin</artifactId>
		<version>1.347</version>
		<!--
			which version of Hudson is this plugin built against?
		-->
		<relativePath>../pom.xml</relativePath>
	</parent>

	<groupId>org.jvnet.hudson.plugins</groupId>
	<artifactId>ssh</artifactId>
	<name>Hudson SSH plugin</name>
	<version>1.0</version>
	<packaging>hpi</packaging>
	<url>http://wiki.hudson-ci.org/display/HUDSON/SSH+plugin</url>
	

	<developers>
		<developer>
			<id>edmund_wagner</id>
			<name>Edmund Wagner</name>
		</developer>
	</developers>

	<dependencies>
		<dependency>
			<groupId>com.jcraft</groupId>
			<artifactId>jsch</artifactId>
			<version>0.1.42</version>
		</dependency>
	</dependencies>

	<!--
		get every artifact through maven.glassfish.org, which proxies all the
		artifacts that we need
	-->
	<repositories>
		<repository>
			<id>m.g.o-public</id>
			<url>http://maven.glassfish.org/content/groups/public/</url>
		</repository>
	</repositories>

	<pluginRepositories>
		<pluginRepository>
			<id>m.g.o-public</id>
			<url>http://maven.glassfish.org/content/groups/public/</url>
		</pluginRepository>
	</pluginRepositories>


  <scm>
    <connection>scm:svn:https://guest@svn.dev.java.net/svn/hudson/tags/ssh-1.0</connection>
    <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/ssh-1.0</developerConnection>
    <url>https://hudson.dev.java.net/source/browse/hudson/tags/ssh-1.0</url>
  </scm>
</project>
