<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>us.bryon</groupId>
        <artifactId>bryon-oss-parent</artifactId>
        <version>1</version>
    </parent>

    <groupId>us.bryon</groupId>
    <artifactId>graphviz-maven-plugin</artifactId>
    <version>1.0</version>
    <packaging>maven-plugin</packaging>

    <name>Graphviz Maven Plugin</name>
    <description>
        maven plugin for generating graphs using the Graphviz program
    </description>

    <issueManagement>
        <system>github</system>
        <url>https://github.com/bryonjacob/graphviz-maven-plugin/issues</url>
    </issueManagement>

    <licenses>
        <license>
            <name>New BSD License</name>
            <url>LICENSE</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:git@github.com:bryonjacob/graphviz-maven-plugin.git</connection>
        <developerConnection>scm:git:git@github.com:bryonjacob/graphviz-maven-plugin.git</developerConnection>
        <url>git@github.com:bryonjacob/graphviz-maven-plugin.git</url>
    </scm>

    <dependencies>
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>2.2.1</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-utils</artifactId>
            <version>1.5.1</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-io</artifactId>
            <version>1.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.maven.plugin-testing</groupId>
            <artifactId>maven-plugin-testing-harness</artifactId>
            <version>1.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-plugin-plugin</artifactId>
                <version>2.6</version>
            </plugin>
            <plugin>
                <artifactId>maven-invoker-plugin</artifactId>
                <version>1.5</version>
                <inherited>false</inherited>
                <configuration>
                    <projectsDirectory>src/test/projects</projectsDirectory>
                    <cloneProjectsTo>${project.build.directory}/test-projects</cloneProjectsTo>
                    <streamLogs>true</streamLogs>
                    <!--suppress MavenModelInspection -->
                    <skipInvocation>${maven.test.skip}</skipInvocation>
                </configuration>
                <executions>
                    <execution>
                        <id>install-plugin</id>
                        <phase>pre-integration-test</phase>
                        <goals>
                            <goal>install</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>run-integration-test</id>
                        <phase>integration-test</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-verifier-plugin</artifactId>
                <version>1.0</version>
                <executions>
                    <execution>
                        <id>main</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <reporting>
        <plugins>
            <plugin>
                <artifactId>maven-plugin-plugin</artifactId>
                <version>2.6</version>
            </plugin>
        </plugins>
    </reporting>

    <distributionManagement>
        <site>
            <id>github</id>
            <url>gitsite:git@github.com/bryonjacob/graphviz-maven-plugin.git</url>
        </site>
    </distributionManagement>

</project>
