Skip to content

Commit

Permalink
[incubator-kie-issues#1571] Unify io.vertx:vertx-grpc* dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele-Cardosi committed Oct 29, 2024
1 parent bb3bcc0 commit 842f303
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
5 changes: 5 additions & 0 deletions kogito-build/kogito-dependencies-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,11 @@
<version>${version.black.ninia}</version>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc</artifactId>
<version>${version.io.vertx}</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-server</artifactId>
Expand Down
28 changes: 28 additions & 0 deletions quarkus/addons/monitoring/prometheus/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,26 @@
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy</artifactId>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-common</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-grpc-common</artifactId>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc</artifactId>
</exclusion>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-common</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand All @@ -57,6 +77,14 @@
</exclusions>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-common</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-server</artifactId>
Expand Down

0 comments on commit 842f303

Please sign in to comment.