<?xml version="1.0" encoding="UTF-8"?>
<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.2.0</version>
  </parent>

  <artifactId>vertx-test-utils</artifactId>
  <version>0.1.2</version>
  <packaging>jar</packaging>

  <name>Spraybot Vert.x Test Utils</name>
  <description>A set of classes and traits to facilitate writing tests with Vert.x and JUnit 5.</description>
  <url>https://github.com/spraybot/vertx-test-utils</url>

  <scm>
    <connection>scm:git:git@github.com:spraybot/vertx-test-utils.git</connection>
    <developerConnection>scm:git:git@github.com:spraybot/vertx-test-utils.git</developerConnection>
    <url>https://github.com/spraybot/vertx-test-utils</url>
    <tag>0.1.2</tag>
  </scm>

  <dependencies>
    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-core</artifactId>
    </dependency>
    <dependency>
      <groupId>io.vertx</groupId>
      <artifactId>vertx-junit5</artifactId>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
    </dependency>
  </dependencies>
</project>