Skip to content

Commit

Permalink
Upgrade Quarkus to 2.1.1.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
Sgitario authored and rsvoboda committed Aug 5, 2021
1 parent 3131e8f commit 40df58a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app-generated-skeleton/threshold.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# With all extensions enabled, it could take the dev mode a long time to start.
linux.generated.dev.time.to.first.ok.request.threshold.ms=50000
linux.generated.dev.time.to.first.ok.request.threshold.ms=54000
linux.generated.dev.time.to.reload.threshold.ms=20000
windows.generated.dev.time.to.first.ok.request.threshold.ms=55000
windows.generated.dev.time.to.first.ok.request.threshold.ms=57000
windows.generated.dev.time.to.reload.threshold.ms=20000
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<packaging>pom</packaging>
<name>Quarkus StartStop TS: Parent</name>
<properties>
<quarkus.version>2.1.0.Final</quarkus.version>
<quarkus.version>2.1.1.Final</quarkus.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.version>3.8.1</maven.compiler.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ public enum WhitelistLogLines {
// Maven 3.8.1 throw a warn msg related to a mirror default configuration
Pattern.compile(".*org.apache.maven.settings.io.SettingsParseException: Unrecognised tag: 'blocked'.*"),
Pattern.compile(".*io.qua.arc.impl.*"), // TODO remove when resolved https://github.com/quarkusio/quarkus/issues/18105
Pattern.compile(".*Class does not exist in ClassLoader QuarkusClassLoader.*"), // TODO remove when resolved https://github.com/quarkusio/quarkus/issues/18746
Pattern.compile(".*Detected a split package usage which is considered a bad practice and should be avoided.*"), // TODO remove when resolved https://github.com/quarkusio/quarkus/issues/19092
Pattern.compile(".*Using @ConfigProperty for Quarkus configuration items is deprecated.*"), // TODO remove when resolved https://github.com/quarkusio/quarkus/issues/19242
}),
// Quarkus is not being gratefully shutdown in Windows when running in Dev mode.
// Reported by https://github.com/quarkusio/quarkus/issues/14647.
Expand All @@ -84,8 +83,8 @@ public enum WhitelistLogLines {
private static final Pattern COMMON_WARNING_DUPLICATE_ENTRY_NATIVE = Pattern.compile(".*Duplicate entry about.html entry.*");
private static final Pattern COMMON_WARNING_DUPLICATE_ENTRIES_NATIVE = Pattern.compile(".*Dependencies with duplicate files detected.*");
// When
private static final Pattern WARNING_MISSING_OBJCOPY_NATIVE = Pattern.compile(".*objcopy executable not found in PATH. Debug symbols will not be separated from executable.*");
private static final Pattern WARNING_MISSING_OBJCOPY_RESULT_NATIVE = Pattern.compile(".*That will result in a larger native image with debug symbols embedded in it.*");
private static final Pattern WARNING_MISSING_OBJCOPY_NATIVE = Pattern.compile(".*objcopy executable not found in PATH.*");
private static final Pattern WARNING_MISSING_OBJCOPY_RESULT_NATIVE = Pattern.compile(".*That also means that resulting native executable is larger as it embeds the debug symbols..*");

public final Pattern[] errs;

Expand Down

0 comments on commit 40df58a

Please sign in to comment.