<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>mygroup</groupId>
    <artifactId>parent</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                    <optimize>true</optimize>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <version>2.0-SNAPSHOT</version>
            </plugin>
        </plugins>
    </build>

    <distributionManagement>
        <site>
            <url>/site</url>
        </site>
    </distributionManagement>

    <pluginRepositories>
        <pluginRepository>
            <id>maven-snapshots</id>
            <url>http://people.apache.org/repo/m2-snapshot-repository</url>
            <snapshots/>
        </pluginRepository>
    </pluginRepositories>

    <repositories>
        <repository>
            <id>maven-snapshots</id>
            <url>http://people.apache.org/repo/m2-snapshot-repository</url>
            <snapshots/>
        </repository>
    </repositories>
</project>

