<?xml version="1.0" encoding="UTF-8"?>
<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>2.14</version>
    <relativePath />
  </parent>

  <artifactId>nomad</artifactId>
  <version>0.3</version>
  <packaging>hpi</packaging>

  <name>Nomad Plugin</name>
  <description>Dynamically schedule Jenkins Slaves on a Nomad cluster</description>
  <url>https://wiki.jenkins-ci.org/display/JENKINS/Nomad+Plugin</url>

  <!-- The default licence for Jenkins OSS Plugins is MIT. Substitute for the applicable one if needed. -->
  <licenses>
    <license>
      <name>MIT License</name>
      <url>http://opensource.org/licenses/MIT</url>
    </license>
  </licenses>

  <scm>
    <connection>scm:git:https://github.com/jenkinsci/nomad-plugin.git</connection>
    <developerConnection>scm:git:https://github.com/jenkinsci/nomad-plugin.git</developerConnection>
    <url>https://github.com/jenkinsci/nomad-plugin</url>
    <tag>nomad-0.3</tag>
  </scm>

  <properties>
    <findbugs.failOnError>false</findbugs.failOnError>
  </properties>

  <developers>
    <developer>
      <id>iverberk</id>
      <name>Ivo Verberk</name>
      <email>ivo@verberk.nl</email>
    </developer>
  </developers>

  <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>
      <groupId>com.squareup.okhttp3</groupId>
      <artifactId>okhttp</artifactId>
      <version>3.2.0</version>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.6.2</version>
    </dependency>

    <!-- TESTS -->
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.10.19</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>
