<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.jenkins-ci.plugins</groupId>
        <artifactId>plugin</artifactId>
        <version>1.532.3</version>
    </parent>

    <artifactId>dimensionsscm</artifactId>
    <version>0.8.12</version>
    <packaging>hpi</packaging>
    <name>Jenkins Dimensions Plugin</name>
    <description>This plugin integrates the Serena Dimensions CM SCM with Jenkins.</description>
    <url>http://wiki.jenkins-ci.org/display/JENKINS/Dimensions+Plugin</url>

    <developers>
        <developer>
            <!-- David Conneely is the current plugin maintainer. -->
            <id>dconneely</id>
            <name>David Conneely</name>
        </developer>
        <developer>
            <!-- Tim Payne created the plugin and maintained it for many years,
                 but he is now doing more interesting things :). -->
            <id>tpayne</id>
            <name>Tim Payne</name>
        </developer>
    </developers>

    <scm>
        <connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
        <developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
        <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
        <tag>dimensionsscm-0.8.12</tag>
    </scm>

    <issueManagement>
        <system>Serena Support</system>
        <url>http://support.serena.com/case/</url>
    </issueManagement>

    <properties>
        <!-- Manage maven-release-plugin version to 2.5.1 to work around Maven/Git issues.
             See https://groups.google.com/forum/#!topic/jenkinsci-dev/qkmbl3HrYgk -->
        <maven-release-plugin.version>2.5.1</maven-release-plugin.version>
    </properties>

    <!-- Allows builds without custom Jenkins profile in ~/.m2/settings.xml. -->
    <repositories>
        <repository>
            <id>repo.jenkins-ci.org</id>
            <url>http://repo.jenkins-ci.org/public/</url>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>repo.jenkins-ci.org</id>
            <url>http://repo.jenkins-ci.org/public/</url>
        </pluginRepository>
    </pluginRepositories>

    <dependencies>
        <dependency>
            <!-- The Serena Dimensions CM dmclient.jar file must be installed into your local Maven repository. -->
            <groupId>com.serena</groupId>
            <artifactId>dmclient</artifactId>
            <version>12.2</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <!-- Compatibility layer to be removed when parent POM reaches version 1.587.
                 See https://wiki.jenkins-ci.org/display/JENKINS/Slave+To+Master+Access+Control -->
            <groupId>org.jenkins-ci</groupId>
            <artifactId>SECURITY-144-compat</artifactId>
            <version>1.0</version>
        </dependency>
        <!-- <dependency>
            <groupId>org.jenkins-ci.main</groupId>
            <artifactId>remoting</artifactId>
            <version>2.47</version>
            <scope>provided</scope>
        </dependency> -->
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-checkstyle-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>animal-sniffer-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <showDeprecation>true</showDeprecation>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
