<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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.github.neothemachine</groupId>
	<artifactId>gwt-phantomjs-junit-runstyle</artifactId>
	<version>1.0.0</version>
	<name>GWT PhantomJS JUnit run style</name>
	<description>A GWT JUnit run style for local testing with PhantomJS</description>
	<inceptionYear>2013</inceptionYear>
	<url>https://github.com/neothemachine/gwt-phantomjs-junit-runstyle</url>
	<licenses>
		<license>
			<name>BSD 3-Clause License</name>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<scm>
		<connection>scm:git:git@github.com:neothemachine/gwt-phantomjs-junit-runstyle.git</connection>
		<developerConnection>scm:git:git@github.com:neothemachine/gwt-phantomjs-junit-runstyle.git</developerConnection>
		<url>git@github.com:neothemachine/gwt-phantomjs-junit-runstyle.git</url>
	</scm>

	<developers>
		<developer>
			<id>maik</id>
			<name>Maik Riechert</name>
			<email>maik.riechert@arcor.de</email>
		</developer>
	</developers>

	<properties>
		<maven.compiler.source>1.6</maven.compiler.source>
		<maven.compiler.target>1.6</maven.compiler.target>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<dependencies>
		<dependency>
			<groupId>com.google.gwt</groupId>
			<artifactId>gwt-user</artifactId>
			<version>2.5.0</version>
		</dependency>
		<dependency>
			<groupId>com.google.gwt</groupId>
			<artifactId>gwt-dev</artifactId>
			<version>2.5.0</version>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>animal-sniffer-maven-plugin</artifactId>
				<version>1.9</version>
				<configuration>
					<signature>
						<groupId>org.codehaus.mojo.signature</groupId>
						<artifactId>java16</artifactId>
						<version>1.0</version>
					</signature>
				</configuration>
				<executions>
					<execution>
						<id>animaltest</id>
						<phase>test</phase>
						<goals>
							<goal>check</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>