<?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">
  <modelVersion>4.0.0</modelVersion>
  <groupId>io.github.rybalkinsd</groupId>
  <artifactId>kohttp-jackson</artifactId>
  <version>0.12.0</version>
  <name>Kotlin DSL http client</name>
  <description>Kotlin DSL http client</description>
  <url>https://github.com/rybalkinsd/kohttp</url>
  <organization>
    <name>io.github.rybalkinsd</name>
    <url>https://github.com/rybalkinsd</url>
  </organization>
  <licenses>
    <license>
      <name>Apache License 2.0</name>
      <url>https://github.com/rybalkinsd/kohttp/blob/master/LICENSE</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Sergey</name>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/rybalkinsd/kohttp.git</connection>
    <developerConnection>scm:git:ssh://git@github.com:rybalkinsd/kohttp.git</developerConnection>
    <url>https://github.com/rybalkinsd/kohttp</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>io.github.rybalkinsd</groupId>
      <artifactId>kohttp</artifactId>
      <version>0.12.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.9.9</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib-jdk8</artifactId>
      <version>1.3.50</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.module</groupId>
      <artifactId>jackson-module-kotlin</artifactId>
      <version>2.9.9</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
