Bump quarkus version to 3.0.1 (#8379)

This commit is contained in:
Mateusz Rzeszutek 2023-04-27 16:18:25 +02:00 committed by GitHub
parent b4191fa82f
commit c8a7b140f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@ plugins {
} }
dependencies { dependencies {
implementation(enforcedPlatform("io.quarkus.platform:quarkus-bom:2.16.6.Final")) implementation(enforcedPlatform("io.quarkus.platform:quarkus-bom:3.0.1.Final"))
implementation("io.quarkus:quarkus-resteasy") implementation("io.quarkus:quarkus-resteasy")
} }

View File

@ -5,10 +5,10 @@
package io.opentelemetry.smoketest.quarkus; package io.opentelemetry.smoketest.quarkus;
import javax.ws.rs.GET; import jakarta.ws.rs.GET;
import javax.ws.rs.Path; import jakarta.ws.rs.Path;
import javax.ws.rs.Produces; import jakarta.ws.rs.Produces;
import javax.ws.rs.core.MediaType; import jakarta.ws.rs.core.MediaType;
@Path("/hello") @Path("/hello")
public class HelloResource { public class HelloResource {