This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 20d5d58a943d9eda5a2266cf54977119998e2ef3 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Wed Apr 15 12:08:24 2020 +0100 Add missing dependencies for OpenTracing extension to work around quarkusio/quarkus#8578 --- extensions/opentracing/runtime/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/extensions/opentracing/runtime/pom.xml b/extensions/opentracing/runtime/pom.xml index 128bb7f..8ce5d2e 100644 --- a/extensions/opentracing/runtime/pom.xml +++ b/extensions/opentracing/runtime/pom.xml @@ -61,6 +61,16 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-opentracing</artifactId> </dependency> + + <!-- TODO: Remove this when Quarkus Jaeger extension issues are fixed https://github.com/quarkusio/quarkus/issues/8578 --> + <dependency> + <groupId>org.eclipse.microprofile.metrics</groupId> + <artifactId>microprofile-metrics-api</artifactId> + </dependency> + <dependency> + <groupId>io.smallrye</groupId> + <artifactId>smallrye-metrics</artifactId> + </dependency> </dependencies> <build>