<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.424</version><!-- which version of Jenkins is this plugin built against? -->
  </parent>

  <artifactId>saltstack</artifactId>
  <version>1.6.1</version>
  <packaging>hpi</packaging>
  <name>Jenkins SaltStack plugin</name>
  <description>Allows Jenkins to send SaltStack messages</description>
  <url>https://wiki.jenkins-ci.org/display/JENKINS/saltstack-plugin</url>
  <licenses>
    <license>
    <name>MIT license</name>
    <comments>All source code is under the MIT license.</comments>
    </license>
  </licenses>

  <scm>
    <connection>scm:git:ssh://github.com/jenkinsci/saltstack-plugin.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/jenkinsci/saltstack-plugin.git</developerConnection>
    <url>https://github.com/jenkinsci/saltstack-plugin</url>
  </scm>

  <developers>
    <developer>
      <id>mchugh19</id>
      <name>Christian McHugh</name>
      <email>mchugh19@hotmail.com</email>
    </developer>
  </developers>

  <!-- 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>http://repo.jenkins-ci.org/public/</url>
    </repository>
    <repository>
      <id>Sonatype-public</id>
      <name>SnakeYAML repository</name>
      <url>http://oss.sonatype.org/content/groups/public/</url>
    </repository>
  </repositories>

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

   <dependencies>
     <dependency>
       <groupId>org.yaml</groupId>
       <artifactId>snakeyaml</artifactId>
       <version>1.16</version>
     </dependency>
   </dependencies>
</project>
