-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Q 3.9+ extension renaming, OpenTelemetry whitelisting log
- Loading branch information
Showing
11 changed files
with
445 additions
and
30 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/apps/jfr-native-image-performance/pom.xml b/apps/jfr-native-image-performance/pom.xml | ||
index 771b835..60df02b 100644 | ||
--- a/apps/jfr-native-image-performance/pom.xml | ||
+++ b/apps/jfr-native-image-performance/pom.xml | ||
@@ -33,7 +33,7 @@ | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
- <artifactId>quarkus-resteasy-reactive</artifactId> | ||
+ <artifactId>quarkus-rest</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
diff --git a/apps/quarkus-json/pom.xml b/apps/quarkus-json/pom.xml | ||
index 3d5fa5f..b1474e3 100644 | ||
--- a/apps/quarkus-json/pom.xml | ||
+++ b/apps/quarkus-json/pom.xml | ||
@@ -32,11 +32,11 @@ | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
- <artifactId>quarkus-resteasy-reactive-jackson</artifactId> | ||
+ <artifactId>quarkus-rest-jackson</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
- <artifactId>quarkus-resteasy-reactive</artifactId> | ||
+ <artifactId>quarkus-rest</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
diff --git a/apps/quarkus-json/src/main/java/org/acme/ExampleResource.java b/apps/quarkus-json/src/main/java/org/acme/ExampleResource.java | ||
index dfb224d..a37b4a3 100644 | ||
--- a/apps/quarkus-json/src/main/java/org/acme/ExampleResource.java | ||
+++ b/apps/quarkus-json/src/main/java/org/acme/ExampleResource.java | ||
@@ -1,12 +1,12 @@ | ||
package org.acme; | ||
|
||
-import javax.ws.rs.Consumes; | ||
-import javax.ws.rs.GET; | ||
-import javax.ws.rs.POST; | ||
-import javax.ws.rs.Path; | ||
-import javax.ws.rs.Produces; | ||
-import javax.ws.rs.core.MediaType; | ||
-import javax.ws.rs.core.Response; | ||
+import jakarta.ws.rs.Consumes; | ||
+import jakarta.ws.rs.GET; | ||
+import jakarta.ws.rs.POST; | ||
+import jakarta.ws.rs.Path; | ||
+import jakarta.ws.rs.Produces; | ||
+import jakarta.ws.rs.core.MediaType; | ||
+import jakarta.ws.rs.core.Response; | ||
import java.io.ByteArrayOutputStream; | ||
import java.math.BigInteger; | ||
import java.security.MessageDigest; |
Oops, something went wrong.