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

	<!-- Project Information -->

	<groupId>edu.clemson.cs.resolve</groupId>
	<artifactId>git-plugin</artifactId>
	<version>0.0.1-alpha3</version>
    
	<packaging>maven-plugin</packaging>
  
	<name>RSRG git plugin</name>
	<description>Provides goals to support the Clemson RSRG git workflow.</description>
	<url>https://github.com/ClemsonRSRG/git-plugin</url>
	<scm>
		<connection>scm:git:git://github.com/ClemsonRSRG/git-plugin.git</connection>
		<developerConnection>scm:git:https://github.com/ClemsonRSRG/git-plugin.git</developerConnection>
		<url>https://github.com/ClemsonRSRG/git-plugin</url>
	</scm>
	<licenses>
		<license>
			<name>The GNU General Public License, Version 3.0</name>
			<url>http://www.gnu.org/licenses/gpl.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<developers>
		<developer>
			<id>hamptos</id>
			<name>Hampton Smith</name>
			<email>hampton.w.smith@gmail.com</email>
			<organization>Clemson University RSRG</organization>
			<organizationUrl>http://www.cs.clemson.edu/group/resolve/</organizationUrl>
			<timezone>-5</timezone>
		</developer>
	</developers>

	
	<!-- Project Data -->

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<dependencies>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-script-ant</artifactId>
			<version>2.0.6</version>
		</dependency>
	</dependencies>
  
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-plugin-plugin</artifactId>
				<version>2.5</version>
        
				<!-- Add the Ant plugin tools -->
				<dependencies>
					<dependency>
						<groupId>org.apache.maven.plugin-tools</groupId>
						<artifactId>maven-plugin-tools-ant</artifactId>
						<version>2.5</version>
					</dependency>
				</dependencies>
        
				<configuration>
					<goalPrefix>rsrg-git</goalPrefix>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.4</version>
				<executions>
						<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>
