<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>cd.go.plugin.base</groupId>
  <artifactId>gocd-plugin-base</artifactId>
  <version>0.0.1</version>
  <name>gocd-plugin-base</name>
  <description>Helper utility to write gocd plugins</description>
  <url>https://github.com/gocd-contrib/gocd-plugin-base</url>
  <inceptionYear>2018</inceptionYear>
  <organization>
    <name>ThoughtWorks, Inc.</name>
    <url>https://www.thoughtworks.com</url>
  </organization>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>bdpiparva</id>
      <name>Bhupendrakumar Piprava</name>
    </developer>
  </developers>
  <scm>
    <connection>scm:https://github.com/gocd-contrib/gocd-plugin-base</connection>
    <developerConnection>https://github.com/gocd-contrib</developerConnection>
    <url>https://github.com/gocd-contrib/gocd-plugin-base</url>
  </scm>
  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/gocd-contrib/gocd-plugin-base/issues</url>
  </issueManagement>
  <dependencies>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.8.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
      <version>3.8.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>cd.go.plugin</groupId>
      <artifactId>go-plugin-api</artifactId>
      <version>19.1.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
      <version>5.4.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-params</artifactId>
      <version>5.4.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <version>5.4.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <version>3.12.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>2.25.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.skyscreamer</groupId>
      <artifactId>jsonassert</artifactId>
      <version>1.5.0</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
