<?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>com.github.fluidsonic</groupId>
  <artifactId>fluid-json</artifactId>
  <version>0.9.5</version>
  <name>fluid-json</name>
  <description>A JSON library written in pure Kotlin.</description>
  <url>https://github.com/fluidsonic/fluid-json</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://github.com/fluidsonic/fluid-json/blob/master/LICENSE</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>fluidsonic</id>
      <name>Marc Knaup</name>
      <email>marc@knaup.io</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:https://github.com/fluidsonic/fluid-json.git</connection>
    <developerConnection>scm:git:git@github.com:fluidsonic/fluid-json.git</developerConnection>
    <url>https://github.com/fluidsonic/fluid-json</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-reflect</artifactId>
      <version>1.3.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib-jdk8</artifactId>
      <version>1.3.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.winterbe</groupId>
      <artifactId>expekt</artifactId>
      <version>0.5.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.spek</groupId>
      <artifactId>spek-subject-extension</artifactId>
      <version>1.2.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
