citrus-testcontainers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-testcontainers</artifactId> <version>4.5.2</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.citrusframework</groupId> <artifactId>citrus-connectors</artifactId> <version>4.5.2</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>citrus-testcontainers</artifactId> <name>Citrus :: Connectors :: Testcontainers</name> <dependencies> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-kubernetes</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> </dependency> <dependency> <groupId>com.github.docker-java</groupId> <artifactId>docker-java-transport-okhttp</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mongodb</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>redpanda</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>kafka</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-dbcp2</artifactId> </dependency> <!-- Optional AWS clients --> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>s3</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>sqs</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>sns</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>kinesis</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>eventbridge</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>dynamodb</artifactId> <scope>provided</scope> </dependency> <!-- Optional Quarkus Test integration --> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-test-common</artifactId> <scope>provided</scope> </dependency> <!-- AWS Localstack --> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>auth</artifactId> </dependency> <!-- Test scoped dependencies --> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-test-support</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-testng</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-spring</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-xml</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-yaml</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> </dependencies> </project>