You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But it is declared as provided, so if an application don't already use it it needs to add the dependecy.
Reading the actual code, I have no idea why you skip all methods annotated with @Path, but if it's really needed, the code should be refactored in a way to not mandate JAX-RS on the classpath at runtime.
Note that the library can also be declared as compile instead of provided, this will fix the issue but add one dependency to the classpath of all applications using it.
The text was updated successfully, but these errors were encountered:
JAX-RS is needed on the classpath due to its usage inside the OpenTracingInterceptor
But it is declared as provided, so if an application don't already use it it needs to add the dependecy.
Reading the actual code, I have no idea why you skip all methods annotated with
@Path
, but if it's really needed, the code should be refactored in a way to not mandate JAX-RS on the classpath at runtime.Note that the library can also be declared as compile instead of provided, this will fix the issue but add one dependency to the classpath of all applications using it.
The text was updated successfully, but these errors were encountered: