<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>3.4</version>
    </parent>

    <artifactId>jsch</artifactId>
    <version>0.1.54.2</version>
    <packaging>hpi</packaging>

    <name>Jenkins JSch dependency plugin</name>
    <url>https://wiki.jenkins.io/display/JENKINS/JSch+plugin</url>
    <description>
        Jenkins plugin that brings the JSch library as a plugin dependency, and provides
        an SSHAuthenticatorFactory for using JSch with the ssh-credentials plugin.
    </description>

    <scm>
        <connection>scm:git:git@github.com:jenkinsci/jsch-plugin.git</connection>
        <developerConnection>scm:git:git@github.com:jenkinsci/jsch-plugin.git</developerConnection>
        <url>https://github.com/jenkinsci/jsch-plugin/</url>
        <tag>jsch-0.1.54.2</tag>
    </scm>

    <licenses>
        <license>
            <name>MIT License</name>
            <url>http://opensource.org/licenses/MIT</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <id>ljader</id>
            <name>Lukasz Jader</name>
        </developer>
        <developer>
            <id>zregvart</id>
            <name>Zoran Regvart</name>
        </developer>
        <developer>
            <id>bpedman</id>
            <name>Brandon Pedersen</name>
        </developer>
        <developer>
            <id>oleg_nenashev</id>
            <name>Oleg Nenashev</name>
        </developer>
        <developer>
            <id>dnusbaum</id>
            <name>Devin Nusbaum</name>
        </developer>
    </developers>

    <properties>
        <jenkins.version>1.625.3</jenkins.version>
        <java.level>7</java.level>
    </properties>

  <!-- get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need -->
    <repositories>
        <repository>
            <id>repo.jenkins-ci.org</id>
            <url>https://repo.jenkins-ci.org/public/</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>repo.jenkins-ci.org</id>
            <url>https://repo.jenkins-ci.org/public/</url>
        </pluginRepository>
    </pluginRepositories>

    <dependencies>
        <!-- plugin dependencies -->
        <dependency>
            <groupId>com.jcraft</groupId>
            <artifactId>jsch</artifactId>
            <version>0.1.54</version>
        </dependency>

        <!-- jenkins dependencies -->
        <dependency>
            <groupId>org.jenkins-ci.plugins</groupId>
            <artifactId>ssh-credentials</artifactId>
            <version>1.13</version>
        </dependency>

    </dependencies>

</project>
