<?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>io.quarkus</groupId>
        <artifactId>quarkus-test-framework</artifactId>
        <version>3.32.4</version>
    </parent>

    <artifactId>quarkus-junit-mockito-config</artifactId>
    <name>Quarkus - Test framework - JUnit - Mockito Config</name>
    <description>
        Contains a MockitoConfiguration that has to be loaded parent-first to work in continuous testing.
        It is separated from junit-mockito to minimize the blast radius.
    </description>

    <dependencies>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
        </dependency>
    </dependencies>

</project>
