<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>
		<!-- which version of Jenkins is this plugin built against? -->
		<groupId>org.jenkins-ci.plugins</groupId>
		<artifactId>plugin</artifactId>
		<version>1.509.4</version>
	</parent>

	<artifactId>threadfix</artifactId>
	<name>ThreadFix Plugin</name>
	<version>1.4.3</version>
	<inceptionYear>2014</inceptionYear>
	<packaging>hpi</packaging>

	<licenses>
		<license>
			<name>The MIT license</name>
			<url>https://github.com/automationdomination</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<scm>
		<connection>scm:git:ssh://github.com/automationdomination/threadfix-plugin.git</connection>
		<developerConnection>scm:git:ssh://git@github.com/automationdomination/threadfix-plugin.git</developerConnection>
		<url>https://github.com/automationdomination/threadfix-plugin</url>
	  <tag>threadfix-1.4.3</tag>
  </scm>

	<repositories>
		<repository>
			<id>project.local</id>
			<url>file:${project.basedir}/repo</url>
			<releases>
				<enabled>true</enabled>
				<updatePolicy>always</updatePolicy>
			</releases>
			<snapshots>
				<enabled>true</enabled>
				<updatePolicy>always</updatePolicy>
			</snapshots>
		</repository>
	</repositories>

	<developers>
		<developer>
			<id>automationdomination</id>
			<name>Brandon Spruth</name>
			<email>brandon@automationdomination.me</email>
		</developer>
		<developer>
			<id>cbaek</id>
			<name>Christopher Baek</name>
			<email>christopher.baek@gmail.com</email>
		</developer>
	</developers>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<junit.version>4.11</junit.version>
		<easymock.version>3.2</easymock.version>
		<slf4j.version>1.7.7</slf4j.version>
		<commons.validator.version>1.4.0</commons.validator.version>
		<threadfix-cli.version>2.0</threadfix-cli.version>
	</properties>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version><!--$NO-MVN-MAN-VER$ -->
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.5</version><!--$NO-MVN-MAN-VER$ -->
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymock</artifactId>
			<version>${easymock.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>${slf4j.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>commons-validator</groupId>
			<artifactId>commons-validator</artifactId>
			<version>${commons.validator.version}</version>
		</dependency>
		<dependency>
			<groupId>com.denimgroup.threadfix</groupId>
			<artifactId>threadfix-cli</artifactId>
			<version>${threadfix-cli.version}</version>
		</dependency>
	</dependencies>

</project>
