Skip to content

Commit

Permalink
Merge pull request #387 from rsvoboda/use-reactive
Browse files Browse the repository at this point in the history
Switch back to reactive artifacts for easier 3.8 and 3.15 comparison
  • Loading branch information
rsvoboda authored Aug 22, 2024
2 parents 643dadc + 414a99e commit 13185c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app-full-microprofile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-jackson</artifactId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand All @@ -46,7 +46,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client</artifactId>
<artifactId>quarkus-rest-client-reactive</artifactId>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion app-jakarta-rest-minimal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest</artifactId>
<artifactId>quarkus-resteasy-reactive</artifactId>
</dependency>
</dependencies>
<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public enum WhitelistLogLines {
// netty 4 which doesn't have the relevant native config in the lib. See https://github.com/netty/netty/pull/13596
Pattern.compile(".*Warning: Please re-evaluate whether any experimental option is required, and either remove or unlock it\\..*"),
Pattern.compile(".*Warning: The option '-H:ReflectionConfigurationResources=META-INF/native-image/io\\.netty/netty-transport/reflection-config\\.json' is experimental and must be enabled via.*"),
Pattern.compile(".*has been relocated.*"),
}),
FULL_MICROPROFILE(new Pattern[]{
// Some artifacts names...
Expand All @@ -40,6 +41,7 @@ public enum WhitelistLogLines {
// netty 4 which doesn't have the relevant native config in the lib. See https://github.com/netty/netty/pull/13596
Pattern.compile(".*Warning: Please re-evaluate whether any experimental option is required, and either remove or unlock it\\..*"),
Pattern.compile(".*Warning: The option '-H:ReflectionConfigurationResources=META-INF/native-image/io\\.netty/netty-transport/reflection-config\\.json' is experimental and must be enabled via.*"),
Pattern.compile(".*has been relocated.*"),
}),
GENERATED_SKELETON(new Pattern[]{
// Harmless warning
Expand Down

0 comments on commit 13185c6

Please sign in to comment.