<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.codeartisans</groupId>
        <artifactId>codeartisans-parent</artifactId>
        <version>6</version>
    </parent>

    <groupId>org.codeartisans.javafx</groupId>
    <artifactId>javafx-maven-plugin-parent</artifactId>
    <version>1.2</version>
    <packaging>pom</packaging>
    <name>${project.artifactId}</name>
    <url>https://eskatos.github.com/javafx-maven-plugin</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <modules>
        <module>javafx-maven-plugin</module>
        <module>javafx-deployer-maven-plugin</module>
    </modules>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
            <comments>Copyrights retained by each developer.</comments>
        </license>
    </licenses>

    <inceptionYear>2012</inceptionYear>

    <scm>
        <url>https://github.com/eskatos/javafx-maven-plugin.git</url>
        <connection>scm:git:github.com:eskatos/javafx-maven-plugin.git</connection>
        <developerConnection>scm:git:git@github.com:eskatos/javafx-maven-plugin.git</developerConnection>
    </scm>

    <issueManagement>
        <system>GitHub</system>
        <url>https://github.com/eskatos/javafx-maven-plugin/issues</url>
    </issueManagement>

    <developers>
        <developer>
            <id>paul@nosphere.org</id>
            <name>Paul Merlin</name>
            <email>paul@nosphere.org</email>
        </developer>
    </developers>

    <build>
        <plugins>

            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <target>1.7</target>
                    <source>1.7</source>
                </configuration>
            </plugin>

        </plugins>
    </build>

</project>
