<?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>dev.relism</groupId>
        <artifactId>flash-parent</artifactId>
        <version>2.1.0-c0c9480</version>
    </parent>

    <artifactId>flash-testing</artifactId>
    <packaging>jar</packaging>

    <!--
      Deliberately NOT under flash-extensions/: that aggregator holds things you install()
      onto an app. This module is a JUnit 5 extension, and it depends on junit-jupiter-api at
      COMPILE scope — nothing installable should drag JUnit onto an application's classpath.
      Consumers add this with <scope>test</scope>.
    -->
    <dependencies>
        <dependency>
            <groupId>dev.relism</groupId>
            <artifactId>flash</artifactId>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
        </dependency>

        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
