quarkus-test-kafka-companion
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-test-kafka-companion</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"> <parent> <groupId>io.quarkus</groupId> <artifactId>quarkus-test-framework</artifactId> <version>3.21.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>quarkus-test-kafka-companion</artifactId> <name>Quarkus - Test Framework - Kafka Support</name> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-test-common</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-kafka-client</artifactId> </dependency> <dependency> <groupId>io.smallrye.reactive</groupId> <artifactId>smallrye-reactive-messaging-kafka-test-companion</artifactId> </dependency> <dependency> <groupId>io.strimzi</groupId> <artifactId>strimzi-test-container</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5</artifactId> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> </dependency> </dependencies> </project>