<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>co.spraybot</groupId>
    <artifactId>internal-core</artifactId>
    <version>0.4.2</version>
  </parent>

  <artifactId>message-runner</artifactId>
  <version>0.2.0</version>
  <packaging>jar</packaging>

  <name>Spraybot MessageRunner</name>
  <description>A micro-framework to allow easily passing specific Vert.x messages to specific addresses for processing of those messages.</description>
  <url>https://github.com/spraybot/message-runner</url>

  <scm>
    <connection>scm:git:git@github.com:spraybot/message-runner</connection>
    <developerConnection>scm:git:git@github.com:spraybot/message-runner</developerConnection>
    <url>https://github.com/spraybot/message-runner</url>
    <tag>0.2.0</tag>
  </scm>

  <dependencies>
    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-core</artifactId>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>

    <dependency>
      <groupId>co.spraybot</groupId>
      <artifactId>vertx-test-utils</artifactId>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
    </dependency>
  </dependencies>
</project>
