removing vertx-uri-template as a dependency (#22470)

there's no usage of UriTemplate (smallrye or vertx in keycloak /
fabric8), so it can be removed from server and the operator

Closes #22468
This commit is contained in:
Steven Hawkins 2023-08-16 10:55:04 -04:00 committed by GitHub
parent 75ee99a59b
commit b216895baf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 0 deletions

View file

@ -58,6 +58,12 @@
<dependency> <dependency>
<groupId>io.quarkiverse.operatorsdk</groupId> <groupId>io.quarkiverse.operatorsdk</groupId>
<artifactId>quarkus-operator-sdk</artifactId> <artifactId>quarkus-operator-sdk</artifactId>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-uri-template</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.quarkiverse.operatorsdk</groupId> <groupId>io.quarkiverse.operatorsdk</groupId>
@ -86,6 +92,12 @@
<dependency> <dependency>
<groupId>io.quarkus</groupId> <groupId>io.quarkus</groupId>
<artifactId>quarkus-kubernetes-client</artifactId> <artifactId>quarkus-kubernetes-client</artifactId>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-uri-template</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.quarkus</groupId> <groupId>io.quarkus</groupId>

View file

@ -18,6 +18,12 @@
<dependency> <dependency>
<groupId>io.quarkus</groupId> <groupId>io.quarkus</groupId>
<artifactId>quarkus-vertx-http</artifactId> <artifactId>quarkus-vertx-http</artifactId>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-uri-template</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.quarkus</groupId> <groupId>io.quarkus</groupId>