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:
parent
75ee99a59b
commit
b216895baf
2 changed files with 18 additions and 0 deletions
|
@ -58,6 +58,12 @@
|
|||
<dependency>
|
||||
<groupId>io.quarkiverse.operatorsdk</groupId>
|
||||
<artifactId>quarkus-operator-sdk</artifactId>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>io.vertx</groupId>
|
||||
<artifactId>vertx-uri-template</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.quarkiverse.operatorsdk</groupId>
|
||||
|
@ -86,6 +92,12 @@
|
|||
<dependency>
|
||||
<groupId>io.quarkus</groupId>
|
||||
<artifactId>quarkus-kubernetes-client</artifactId>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>io.vertx</groupId>
|
||||
<artifactId>vertx-uri-template</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.quarkus</groupId>
|
||||
|
|
|
@ -18,6 +18,12 @@
|
|||
<dependency>
|
||||
<groupId>io.quarkus</groupId>
|
||||
<artifactId>quarkus-vertx-http</artifactId>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>io.vertx</groupId>
|
||||
<artifactId>vertx-uri-template</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.quarkus</groupId>
|
||||
|
|
Loading…
Reference in a new issue