<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <!-- This module was also published with a richer model, Gradle metadata,  -->
  <!-- which should be used instead. Do not delete the following line which  -->
  <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
  <!-- that they should prefer consuming it instead. -->
  <!-- do_not_remove: published-with-gradle-metadata -->
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.linked-planet</groupId>
  <artifactId>kotlin-jira-client-test-base</artifactId>
  <version>0.3.1</version>
  <name>kotlin-jira-client-test-base</name>
  <description>Provides a client for jira rest api calls and object mapping.</description>
  <url>https://github.com/linked-planet/kotlin-jira-client</url>
  <inceptionYear>2022</inceptionYear>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Philipp Karlsson</name>
      <email>philipp.karlsson@linked-planet.com</email>
      <url>https://github.com/betacore</url>
      <organization>linked-planet GmbH</organization>
      <organizationUrl>https://linked-planet.com</organizationUrl>
    </developer>
    <developer>
      <name>Simon Jahreiss</name>
      <email>simon.jahreiss@linked-planet.com</email>
      <url>https://github.com/sjahreis</url>
      <organization>linked-planet GmbH</organization>
      <organizationUrl>https://linked-planet.com</organizationUrl>
    </developer>
    <developer>
      <name>Alexander Weickmann</name>
      <email>alexander.weickmann@linked-planet.com</email>
      <url>https://github.com/weickmanna</url>
      <organization>linked-planet GmbH</organization>
      <organizationUrl>https://linked-planet.com</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/linked-planet/kotlin-jira-client.git</connection>
    <developerConnection>scm:git:ssh://github.com/linked-planet/kotlin-jira-client.git</developerConnection>
    <url>https://github.com/linked-planet/kotlin-jira-client</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.linked-planet</groupId>
      <artifactId>kotlin-jira-client-core</artifactId>
      <version>0.3.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib-jdk8</artifactId>
      <version>1.3.41</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.8.6</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlinx</groupId>
      <artifactId>kotlinx-coroutines-core</artifactId>
      <version>1.3.3</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>io.arrow-kt</groupId>
      <artifactId>arrow-core</artifactId>
      <version>0.13.2</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>io.arrow-kt</groupId>
      <artifactId>arrow-meta</artifactId>
      <version>0.13.2</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
