| <?xml version="1.0"?> |
| <project 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" |
| xmlns="http://maven.apache.org/POM/4.0.0"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.kie.kogito</groupId> |
| <artifactId>quarkus</artifactId> |
| <version>3.0.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>kogito-quarkus-test-utils</artifactId> |
| |
| <name>Kogito :: Test Utilities :: Quarkus</name> |
| <description>Kogito Test Utilities for Quarkus</description> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.kie.kogito</groupId> |
| <artifactId>kogito-quarkus-bom</artifactId> |
| <version>${project.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.kie.kogito</groupId> |
| <artifactId>kogito-test-utils</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>io.quarkus</groupId> |
| <artifactId>quarkus-junit5</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.kafka</groupId> |
| <artifactId>kafka-clients</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-junit-jupiter</artifactId> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <systemPropertyVariables combine.children="append"> |
| <container.image.mongodb>${container.image.mongodb}</container.image.mongodb> |
| </systemPropertyVariables> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |