<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>org.loadui</groupId>
    <artifactId>testFx</artifactId>
    <version>2.7.4</version>
    <name>TestFX</name>
    <description>TestFX</description>
	<url>https://github.com/SmartBear/TestFX</url>
	
	<licenses>
		<license>
			<name>European Union Public Licence - EUPL v.1.1</name>
			<url>http://ec.europa.eu/idabc/eupl.html</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	
	<scm>
		<url>https://github.com/SmartBear/TestFX.git</url>
	</scm>
	
	<developers>
		<developer>
			<id>minisu</id>
			<name>Henrik Olsson</name>
			<url>https://github.com/minisu</url>
			<timezone>+1</timezone>
		</developer>
		<developer>
			<id>dainnilsson</id>
			<name>Dain Nilsson</name>
			<url>https://github.com/dainnilsson</url>
			<timezone>+1</timezone>
			<roles>
				<role>project founder</role>
				<role>former developer</role>
			</roles>
		</developer>
	</developers>
	
	<contributors>
		<contributor>
			<name>The LoadUI team</name>
			<url>https://github.com/SmartBear/loadui</url>
		</contributor>
	</contributors>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.14.1</version>
                <configuration>
                    <forkMode>always</forkMode>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>com.oracle</groupId>
            <artifactId>javafx-runtime</artifactId>
            <version>2.2</version>
            <systemPath>${env.JAVA_HOME}/jre/lib/jfxrt.jar</systemPath>
            <scope>system</scope>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>14.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <exclusions>
                <exclusion>
                    <groupId>org.hamcrest</groupId>
                    <artifactId>hamcrest-core</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
</project>
