<project xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd' xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
    <modelVersion>4.0.0</modelVersion>

    <groupId>au.net.ocean.maven.plugin</groupId>
    <artifactId>maven-plugin</artifactId>
    <packaging>jar</packaging>
    <version>1.0</version>
    <name>Ocean Maven Plugin</name>

    <description>
        Maven Plugin Tools are a library of utility classes to aid in the development and testing of plugins for Maven 2.
        Key features include support for Java 5 annotation based descriptor generation via an annotation extractor (available separately), and
        support for easier unit testing using the same Java 5 annotations and runtime dynamic proxies for parameter injection.
    </description>

    <url>http://maven.ocean.net.au/plugin/</url>
    <inceptionYear>2007</inceptionYear>
    <licenses>
        <license>
            <name>The Revised BSD Licence</name>
            <url>http://www.ocean.net.au/licences/BSDLicence.txt</url>
        </license>
    </licenses>

    <issueManagement>
        <system>Jira</system>
        <url>http://jira.ocean.net.au/browse/MP</url>
    </issueManagement>

    <ciManagement>
        <system>TeamCity</system>
        <url>http://teamcity.ocean.net.au/viewType.html?buildTypeId=bt7</url>
        <notifiers>
            <notifier>
                <type>email</type>
                <configuration>
                    <subscription-address>http://teamcity.ocean.net.au/profile.html?</subscription-address>
                </configuration>
                <sendOnError>true</sendOnError>
                <sendOnFailure>true</sendOnFailure>
                <sendOnSuccess>true</sendOnSuccess>
                <sendOnWarning>true</sendOnWarning>
            </notifier>
            <notifier>
                <type>jabber</type>
                <configuration>
                    <subscription-address>http://teamcity.ocean.net.au/profile.html?</subscription-address>
                </configuration>
                <sendOnError>true</sendOnError>
                <sendOnFailure>true</sendOnFailure>
                <sendOnSuccess>true</sendOnSuccess>
                <sendOnWarning>true</sendOnWarning>
            </notifier>
        </notifiers>
    </ciManagement>

    <scm>
        <connection>scm:svn:http://svn.ocean.net.au/maven-plugin/tags/maven-plugin-1.0</connection>
        <developerConnection>scm:svn:http://svn.ocean.net.au/maven-plugin/tags/maven-plugin-1.0</developerConnection>
        <url>http://fisheye.ocean.net.au/browse/maven-plugin/tags/maven-plugin-1.0</url>
    </scm>

    <parent>
        <groupId>au.net.ocean</groupId>
        <artifactId>maven</artifactId>
        <version>1.8</version>
    </parent>

    <repositories>
        
    </repositories>

    <distributionManagement>
        <repository>
            <uniqueVersion>false</uniqueVersion>
            <id>maven2.dev.java.net</id>
            <name>JavaNet Release Repository</name>
            <url>java-net:/maven2-repository/trunk/www/repository/</url>
        </repository>
    </distributionManagement>

    <dependencies>
        <dependency>
            <groupId>au.net.ocean.maven.plugin</groupId>
            <artifactId>maven-plugin-annotations</artifactId>
            <version>1.0</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>[2.0,)</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-project</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <properties>
        <licence>BSD</licence>
    </properties>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-release-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
            </plugin>
        </plugins>
        <extensions>
            <extension>
                <groupId>org.jvnet.wagon-svn</groupId>
                <artifactId>wagon-svn</artifactId>
                <version>1.8</version>
            </extension>
        </extensions>
    </build>

</project>
