zhfeng commented on issue #2442: URL: https://github.com/apache/camel-quarkus/issues/2442#issuecomment-815939612
@weimeilin79 It looks like ```camel-quarkus-azure-eventhubs``` depends on ```quarkus-micrometer``` which produces the ```MetricsCapabilityBuildItem```. ``` [INFO] ├─ org.apache.camel.quarkus:camel-quarkus-azure-eventhubs-deployment:jar:1.8.1 (compile) [INFO] │ ├─ org.apache.camel.quarkus:camel-quarkus-azure-storage-blob-deployment:jar:1.8.1 (compile) [INFO] │ │ ├─ org.apache.camel.quarkus:camel-quarkus-support-azure-core-deployment:jar:1.8.1 (compile) [INFO] │ │ │ ├─ org.apache.camel.quarkus:camel-quarkus-support-jackson-dataformat-xml-deployment:jar:1.8.1 (compile) [INFO] │ │ │ │ ├─ io.quarkus:quarkus-jackson-deployment:jar:1.13.0.Final (compile) [INFO] │ │ │ │ │ ├─ io.quarkus:quarkus-jackson-spi:jar:1.13.0.Final (compile) [INFO] │ │ │ │ │ └─ io.quarkus:quarkus-jackson:jar:1.13.0.Final (compile) [INFO] │ │ │ │ │ ├─ com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.12.1 (compile) [INFO] │ │ │ │ │ └─ com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.12.1 (compile) [INFO] │ │ │ │ ├─ io.quarkus:quarkus-jaxb-deployment:jar:1.13.0.Final (compile) [INFO] │ │ │ │ │ ├─ io.quarkus:quarkus-jaxp-deployment:jar:1.13.0.Final (compile) [INFO] │ │ │ │ │ │ └─ io.quarkus:quarkus-jaxp:jar:1.13.0.Final (compile) [INFO] │ │ │ │ │ └─ io.quarkus:quarkus-jaxb:jar:1.13.0.Final (compile) [INFO] │ │ │ │ └─ org.apache.camel.quarkus:camel-quarkus-support-jackson-dataformat-xml:jar:1.8.1 (compile) [INFO] │ │ │ │ └─ com.fasterxml.jackson.dataformat:jackson-dataformat-xml:jar:2.12.1 (compile) [INFO] │ │ │ │ ├─ com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.12.1 (compile) [INFO] │ │ │ │ ├─ org.codehaus.woodstox:stax2-api:jar:4.2 (compile) [INFO] │ │ │ │ └─ com.fasterxml.woodstox:woodstox-core:jar:6.1.1 (compile) [INFO] │ │ │ ├─ org.apache.camel.quarkus:camel-quarkus-support-reactor-netty-deployment:jar:1.8.1 (compile) [INFO] │ │ │ │ ├─ io.quarkus:quarkus-micrometer-deployment:jar:1.13.0.Final (compile) ``` So I think a simpe work around could be to exclude ```quarkus-micrometer``` just like ``` + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-azure-eventhubs</artifactId> + <exclusions> + <exclusion> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-micrometer-deployment</artifactId> + </exclusion> + </exclusions> + </dependency> ``` But we still need to investigate why ```quarkus-micrometer``` has been included in ```camel-support-reactor-netty```. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org