<?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.torresmi</groupId>
  <artifactId>remotedata</artifactId>
  <version>1.1</version>
  <name>RemoteData</name>
  <description>Data type that represents the possible states when fetching data from a remote source.</description>
  <url>https://github.com/torresmi/kotlin-remotedata.git</url>
  <licenses>
    <license>
      <name>MIT</name>
      <url>https://opensource.org/licenses/MIT</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>torresmi</id>
      <name>Michael Torres</name>
      <email>torresmi@mail.gvsu.edu</email>
    </developer>
  </developers>
  <scm>
    <connection>https://github.com/torresmi/kotlin-remotedata.git</connection>
    <developerConnection>https://github.com/torresmi/kotlin-remotedata.git</developerConnection>
    <url>https://github.com/torresmi/kotlin-remotedata.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib</artifactId>
      <version>1.2.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <version>2.8.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.spek</groupId>
      <artifactId>spek-api</artifactId>
      <version>1.1.5</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.spek</groupId>
      <artifactId>spek-junit-platform-engine</artifactId>
      <version>1.1.5</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
