Created
June 16, 2021 17:30
-
-
Save grossws/4e44830c80de63f28c109b4275d606a7 to your computer and use it in GitHub Desktop.
quarkus-bom 1.13.x opentracing issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencyResolutionManagement { | |
repositories { | |
mavenCentral() | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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