quarkus-junit5-mockito-config
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5-mockito-config</artifactId> <version>3.21.2</version> </dependency>
<?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.21.2</version> </parent> <artifactId>quarkus-junit5-mockito-config</artifactId> <name>Quarkus - Test framework - JUnit 5 - Mockito Config</name> <description> Contains a MockitoConfiguration that has to be loaded parent-first to work in continuous testing. It is separated from junit5-mockito to minimize the blast radius. </description> <dependencies> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> </dependencies> </project>