<?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>io.unmock</groupId>
  <artifactId>spring</artifactId>
  <version>0.0.0</version>
  <name>unmock-spring</name>
  <description>Core functions with which one can build an unmock java integration</description>
  <url>http://www.example.com/example-application</url>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>mikesol</id>
      <name>Mike Solomon</name>
      <email>mike@meeshkan.com</email>
    </developer>
  </developers>
  <scm>
    <connection>https://github.com/unmock/unmock-spring.git</connection>
    <developerConnection>https://github.com/unmock/unmock-spring</developerConnection>
    <url>https://github.com/unmock/unmock-spring</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>io.unmock</groupId>
      <artifactId>core</artifactId>
      <version>0.0.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>io.unmock</groupId>
      <artifactId>okhttp</artifactId>
      <version>0.0.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.squareup.okhttp3</groupId>
      <artifactId>okhttp</artifactId>
      <version>3.14.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
      <version>5.1.5.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <version>5.1.5.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.json</groupId>
      <artifactId>json</artifactId>
      <version>20180130</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest</artifactId>
      <version>2.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
