quarkus-test-hibernate-reactive-panache
Used in: 1 component
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
Overview
Description
Build parent to bring in required dependencies
Snippets
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-test-hibernate-reactive-panache</artifactId> <version>3.21.2</version> </dependency>
Maven POM File
<?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-test-hibernate-reactive-panache</artifactId> <name>Quarkus - Test framework - Hibernate Reactive Panache</name> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-hibernate-reactive-panache-common</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-test-vertx</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-vertx</artifactId> </dependency> <dependency> <groupId>io.smallrye.reactive</groupId> <artifactId>mutiny</artifactId> </dependency> </dependencies> </project>