<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.13</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>
            <!--
            Tim Payne (tpayne) created the original Jenkins Dimensions Plugin and maintained it for many years.
            Tim is now busy doing more interesting things, so the Plugin maintainer is currently:
            -->
            <id>dconneely</id>
            <name>David Conneely</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.13</tag>
    </scm>

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

    <properties>
        <!--
        Manage maven-release-plugin version to 2.5.3 to work around various Maven/Git issues.
        * https://issues.apache.org/jira/browse/MRELEASE-812 - version 2.5
        * https://issues.apache.org/jira/browse/MRELEASE-875 / 885 - version 2.5.1 (just in case)
        * https://issues.apache.org/jira/browse/MRELEASE-902 - version 2.5.2
        -->
        <maven-release-plugin.version>2.5.3</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>
        <!--
        The Serena Dimensions CM dmclient.jar file must be installed into your local Maven repository.
        Note the following does not mean that version 14.2 or later of the API is required:
        Older JARs (back to 10.1.3) also work, because the plugin only calls older API classes and methods.
        -->
        <dependency>
            <groupId>com.serena.dimensions</groupId>
            <artifactId>dmclient</artifactId>
            <version>14.2.0</version>
            <scope>provided</scope>
        </dependency>
        <!--
        SECURITY-144-compat is a compatibility layer to be removed when parent POM reaches version 1.587 or 1.580.1.
        See https://wiki.jenkins-ci.org/display/JENKINS/Slave+To+Master+Access+Control
        Intend to do this very soon, but sorting out a few issues first so that users who can't upgrade
        to 1.580.1 / 1.587 or later can continue to use an older Jenkins Dimensions Plugin.
        -->
        <dependency>
            <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>
