Skip to content
Discussion options

You must be logged in to vote

There is a way around it though. Here is how you can exclude quarkus-smallrye-metrics:

[aloubyansky@localhost quarkus-infinispan-metrics-reproducer]$ git diff
diff --git a/pom.xml b/pom.xml
index ef1445f..2357266 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,6 +26,21 @@
         <type>pom</type>
         <scope>import</scope>
       </dependency>
+      <dependency>
+        <groupId>io.quarkus</groupId>
+        <artifactId>quarkus-infinispan-embedded</artifactId>
+        <version>1.6.1.Final</version>
+        <exclusions>
+          <exclusion>
+            <groupId>io.quarkus</groupId>
+            <artifactId>quarkus-smallrye-metrics</artifactId>
+          </exclusion>
+          <excl…

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
2 replies
@zbhavyai
Comment options

@jmartisk
Comment options

Comment options

You must be logged in to vote
1 reply
@zbhavyai
Comment options

Answer selected by zbhavyai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment