Skip to content

Commit

Permalink
Merge pull request #14323 from loicmathieu/fix/opentracing-miss-jaxrs
Browse files Browse the repository at this point in the history
fix: add JAXRS API as SR opentracing depends on it but didn't declare it
  • Loading branch information
loicmathieu authored Jan 18, 2021
2 parents f60af75 + 5c9ebb1 commit d7c2115
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions extensions/smallrye-opentracing/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@
</exclusion>
</exclusions>
</dependency>
<!--
smallrye-opentracing depends on opentracing:jaxrs2 that defines JAXRS-API as provided.
So we need to add it in case we use opentracing without resteasy.
See https://github.com/opentracing-contrib/java-interceptors/issues/15
-->
<dependency>
<groupId>org.jboss.spec.javax.ws.rs</groupId>
<artifactId>jboss-jaxrs-api_2.1_spec</artifactId>
</dependency>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-fault-tolerance-tracing-propagation</artifactId>
Expand Down

0 comments on commit d7c2115

Please sign in to comment.