<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><!-- which version of Jenkins is this plugin built against? -->
	</parent>

	<url>https://wiki.jenkins-ci.org/display/JENKINS/Relution-Publisher</url>

	<groupId>org.jenkins-ci.plugins</groupId>
	<artifactId>relution-publisher</artifactId>
	<name>Relution Enterprise Appstore Publisher plugin</name>
	<version>true</version>
	<packaging>hpi</packaging>

	<scm>
		<connection>scm:git:ssh://github.com/mwaylabs/relution-jenkins-plugin.git</connection>
		<developerConnection>scm:git:ssh://git@github.com/mwaylabs/relution-jenkins-plugin.git</developerConnection>
		<url>https://github.com/mwaylabs/relution-jenkins-plugin.git</url>
		<tag>HEAD</tag>
	</scm>

	<developers>
		<developer>
			<id>mwaylabs</id>
			<name>M-Way Solutions</name>
			<email>jenkins.ios.bot@mwaysolutions.com</email>
		</developer>
	</developers>

	<!-- Maven Release Plugin -->
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.5</version>
			</plugin>
		</plugins>
	</build>

	<!-- 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>

	<dependencies>
		<!-- apache-commons: Validator -->
		<dependency>
			<groupId>commons-validator</groupId>
			<artifactId>commons-validator</artifactId>
			<version>1.4.0</version>
		</dependency>

		<!-- apache-httpcomponents: HTTP core -->
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpcore</artifactId>
			<version>4.3.2</version>
		</dependency>

		<!-- apache-httpcomponents: HTTP async client -->
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpasyncclient</artifactId>
			<version>4.0.1</version>
		</dependency>

		<!-- apache-httpcomponents: Tika -->
		<dependency>
			<groupId>org.apache.tika</groupId>
			<artifactId>tika-core</artifactId>
			<version>1.5</version>
		</dependency>

		<!-- apache-httpcomponents: HTTP mime -->
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpmime</artifactId>
			<version>4.3.4</version>
		</dependency>

		<!-- Gson: JSON to Java converter (and vice-versa) -->
		<dependency>
			<groupId>com.google.code.gson</groupId>
			<artifactId>gson</artifactId>
			<version>2.2.4</version>
		</dependency>
	</dependencies>
</project>