<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>

	<parent>
		<groupId>org.jenkins-ci.plugins</groupId>
		<artifactId>plugin</artifactId>
		<version>1.509.4</version>
	</parent>

	<artifactId>perfectomobile</artifactId>
	<version>2.20.0.11</version>
	<packaging>hpi</packaging>
	<name>Perfecto Mobile Plugin</name>
	<url>https://wiki.jenkins-ci.org/display/JENKINS/MobileCloud+for+Jenkins+Plugin</url>

	<developers>
		<developer>
			<id>perfectomobile-com</id>
			<name>perfectomobile</name>
			<email>jenkins.admin@perfectomobile.com</email>
		</developer>
	</developers>
	
	<!-- get every artifact through repo.jenkins-ci.org, which proxies all the 
		artifacts that we need -->
	<repositories>
		<repository>
			<id>repo.jenkins-ci.org</id>
			<url>http://repo.jenkins-ci.org/public/</url>
		</repository>
	</repositories>

	<pluginRepositories>
		<pluginRepository>
			<id>repo.jenkins-ci.org</id>
			<url>http://repo.jenkins-ci.org/public/</url>
		</pluginRepository>
	</pluginRepositories>

	<distributionManagement>
		<repository>
			<id>maven.jenkins-ci.org</id>
			<url>http://maven.jenkins-ci.org/content/repositories/releases/</url>
		</repository>
	</distributionManagement>
	
	<scm>
		<connection>scm:git:git://github.com:jenkinsci/MobileCloud.git</connection>
		<developerConnection>scm:git:git@github.com:jenkinsci/MobileCloud.git</developerConnection>
		<url>https://github.com/jenkinsci/MobileCloud.git</url>
	  <tag>perfectomobile-2.20.0.11</tag>
  </scm>

    <dependencies>		
		<dependency>
			<groupId>com.sun.jersey</groupId>
			<artifactId>jersey-client</artifactId>
			<version>1.18</version>
		</dependency>
		<dependency>
			<groupId>com.sun.jersey.contribs</groupId>
			<artifactId>jersey-apache-client</artifactId>
			<version>1.18</version>
		</dependency>
		<dependency>
			<groupId>com.sun.jersey.contribs</groupId>
			<artifactId>jersey-multipart</artifactId>
			<version>1.18</version>
		</dependency>
		<dependency>
			<groupId>com.googlecode.json-simple</groupId>
			<artifactId>json-simple</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpmime</artifactId>
			<version>4.3.2</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
		
		<!-- the next dep'cy copied from copyartifact and is needed only for the upload artifacts builder -->
		<!-- it's fine when run on jenkins 1.556 machine -->
		<dependency>
			<groupId>org.jenkins-ci.main</groupId>
			<artifactId>maven-plugin</artifactId>
			<version>1.509</version>
			<optional>true</optional>
		</dependency>		
	</dependencies>
	
	<licenses>
		<license>
		  <name>MIT License</name>
		  <url>http://opensource.org/licenses/MIT</url>
		</license>
	 </licenses>
	
	<build>
	  <plugins>
		<plugin>
		  <artifactId>maven-release-plugin</artifactId>
		  <version>2.4.2</version>
		  <dependencies>
			<dependency>
			  <groupId>org.apache.maven.scm</groupId>
			  <artifactId>maven-scm-provider-gitexe</artifactId>
			  <version>1.8.1</version>
			</dependency>
		   </dependencies>
		  </plugin>
		</plugins>
	</build>
</project>
