kroxylicious-systemtests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.kroxylicious</groupId> <artifactId>kroxylicious-systemtests</artifactId> <version>0.14.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright Kroxylicious Authors. Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 --> <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.kroxylicious</groupId> <artifactId>kroxylicious-parent</artifactId> <version>0.14.0</version> </parent> <artifactId>kroxylicious-systemtests</artifactId> <name>Kroxylicious System Tests</name> <description> The intention of this module is to test Kroxylicious against a kafka instance deployed in a kubernetes cluster/minikube using Strimzi, to simulate a real scenario for end-to-end testing treating Kroxylicious as a black box. </description> <properties> <!-- Override for kafka version - used when Apache Kafka is ahead of the Strimzi release --> <!-- <kafka.version>4.0.0</kafka.version> --> </properties> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client-api</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-core</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-apps</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-batch</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-apiextensions</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-rbac</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>certmanager-model</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client</artifactId> <scope>runtime</scope> <exclusions> <exclusion> <groupId>io.fabric8</groupId> <artifactId>kubernetes-httpclient-vertx</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-httpclient-jdk</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>openshift-client</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>openshift-client-api</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>openshift-model</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>openshift-model-operator</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-common</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>openshift-model-operatorhub</artifactId> </dependency> <dependency> <groupId>io.strimzi</groupId> <artifactId>api</artifactId> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-commons</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <!-- third party dependencies - runtime and compile --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> </dependency> <!-- third party dependencies - test --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>io.kroxylicious</groupId> <artifactId>kroxylicious-kms-test-support</artifactId> </dependency> <dependency> <groupId>io.kroxylicious</groupId> <artifactId>kroxylicious-api</artifactId> </dependency> <dependency> <groupId>io.kroxylicious</groupId> <artifactId>kroxylicious-kubernetes-api</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.kroxylicious</groupId> <artifactId>kroxylicious-kms-provider-hashicorp-vault-test-support</artifactId> </dependency> <dependency> <groupId>io.kroxylicious</groupId> <artifactId>kroxylicious-kms-provider-aws-kms</artifactId> </dependency> <dependency> <groupId>io.kroxylicious</groupId> <artifactId>kroxylicious-kms-provider-aws-kms-test-support</artifactId> </dependency> <dependency> <groupId>io.kroxylicious</groupId> <artifactId>kroxylicious-kms-provider-fortanix-dsm-test-support</artifactId> </dependency> <dependency> <groupId>io.kroxylicious</groupId> <artifactId>kroxylicious-record-encryption</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>info.schnatterer.moby-names-generator</groupId> <artifactId>moby-names-generator</artifactId> </dependency> <dependency> <groupId>io.skodjob</groupId> <artifactId>test-frame-common</artifactId> </dependency> <dependency> <groupId>io.skodjob</groupId> <artifactId>test-frame-kubernetes</artifactId> </dependency> <dependency> <groupId>io.skodjob</groupId> <artifactId>test-frame-openshift</artifactId> </dependency> <dependency> <groupId>io.skodjob</groupId> <artifactId>test-frame-log-collector</artifactId> </dependency> <dependency> <groupId>io.kroxylicious</groupId> <artifactId>kroxylicious-operator-test-support</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <id>integration-test</id> <goals> <goal>test</goal> </goals> <phase>integration-test</phase> <configuration> <skipTests>${skipSTs}</skipTests> <includes> <include>**/ST*.java</include> <include>**/*ST.java</include> </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <skipPublishing>true</skipPublishing> </configuration> </plugin> <!-- We don't actually care about javadoc for this module, but it needs to be present for central-publishing-maven-plugin's validatios to pass. so inspired by https://stackoverflow.com/a/59073656 we skip javadoc generation and attach an empty jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${project.basedir}/src/main/javadoc</classesDirectory> </configuration> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> <profiles> <profile> <id>ci</id> <properties> <sonar.coverage.exclusions>**/io/kroxylicious/systemtests/**</sonar.coverage.exclusions> </properties> </profile> </profiles> </project>