quarkus-test-openshift
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus.qe</groupId> <artifactId>quarkus-test-openshift</artifactId> <version>1.7.0.Beta1</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.quarkus.qe</groupId> <artifactId>quarkus-test-parent</artifactId> <version>1.7.0.Beta1</version> </parent> <artifactId>quarkus-test-openshift</artifactId> <name>Quarkus - Test Framework - OpenShift</name> <dependencies> <dependency> <groupId>io.quarkus.qe</groupId> <artifactId>quarkus-test-core</artifactId> </dependency> <dependency> <groupId>io.quarkus.qe</groupId> <artifactId>quarkus-test-images</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>openshift-client</artifactId> <!-- Excludes artifact from CVE-2023-0833 --> <exclusions> <exclusion> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-httpclient-vertx</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>knative-client</artifactId> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> </dependency> <!-- Used to transform configuration properties to environment variables --> <dependency> <groupId>io.smallrye.config</groupId> <artifactId>smallrye-config-common</artifactId> </dependency> <dependency> <groupId>io.quarkus.qe</groupId> <artifactId>quarkus-test-containers</artifactId> <optional>true</optional> <scope>provided</scope> </dependency> </dependencies> </project>