Skip to content

Instantly share code, notes, and snippets.

@grossws
Created June 16, 2021 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grossws/4e44830c80de63f28c109b4275d606a7 to your computer and use it in GitHub Desktop.
Save grossws/4e44830c80de63f28c109b4275d606a7 to your computer and use it in GitHub Desktop.
quarkus-bom 1.13.x opentracing issue
plugins {
id("io.quarkus") version "1.13.7.Final"
java
}
dependencies {
implementation(platform("io.quarkus:quarkus-bom:1.13.7.Final"))
implementation("io.quarkus:quarkus-resteasy")
implementation("io.quarkus:quarkus-smallrye-opentracing")
}
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
// src/main/java/t/TestResouce.java
package t;
import javax.enterprise.context.ApplicationScoped;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
@ApplicationScoped
@Path("/test")
public class TestResource {
@GET
public String test() {
return "hel";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment