Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump quarkus 3.2 #283

Merged
merged 4 commits into from
Jul 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>3.1.0.Final</quarkus.version>
<quarkus.version>3.2.0.Final</quarkus.version>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus-ide-config.version>2.5.1.Final</quarkus-ide-config.version>
<maven.compiler.source>11</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public enum MvnCmds {
new String[]{"java", "-jar", "target/quarkus-app/quarkus-run.jar"}
}),
DEV(new String[][]{
new String[]{"mvn", "clean", "quarkus:dev", "-Dmaven.repo.local=" + getLocalMavenRepoDir()}
new String[]{"mvn", "clean", "quarkus:dev", "-Dmaven.repo.local=" + getLocalMavenRepoDir(), "-Dquarkus.analytics.disabled=true"}
}),
NATIVE(new String[][]{
Stream.concat(Stream.of("mvn", "clean", "compile", "package", "-Pnative"),
Expand All @@ -35,7 +35,7 @@ public enum MvnCmds {
}
}),
MVNW_DEV(new String[][]{
new String[]{Commands.mvnw(), "-e", "quarkus:dev"}
new String[]{Commands.mvnw(), "-e", "quarkus:dev", "-Dquarkus.analytics.disabled=true"}
}),
MVNW_JVM(new String[][]{
new String[]{Commands.mvnw(), "clean", "dependency:tree", "compile", "quarkus:build", "-Dquarkus.package.output-name=quarkus"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ public enum WhitelistLogLines {
Pattern.compile(".*errorprone.*"),
// https://github.com/quarkusio/quarkus/pull/28810
Pattern.compile(".*Stream is closed, ignoring and trying to continue.*"),
// To be able to run on Quarkus < 3.2 which does not support analytics
Pattern.compile(".*Unrecognized configuration key \"quarkus.analytics.disabled\" was provided.*"),
// arquillian-bom has wrong sha1 and md5sum, discussed with jfang who uploaded it, there is nothing he can do about it
Pattern.compile(".*Checksum validation failed, expected 2811ba27a71a8bda0602161ffe2f6e1429da8068 but is 36257165a0945753efb3f9d473d86c6f4c6c6f6e.*"),
Pattern.compile(".*Could not validate integrity of download from https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.7.0.Final/arquillian-bom-1.7.0.Final.pom.*"),
Pattern.compile(".*org.eclipse.aether.util.concurrency.RunnableErrorForwarder.*"),
// https://github.com/quarkusio/quarkus/issues/34626
Pattern.compile("\\[Quarkus build analytics\\] Analytics remote config not received."),
}),
FULL_MICROPROFILE(new Pattern[]{
// Some artifacts names...
Expand All @@ -24,6 +32,8 @@ public enum WhitelistLogLines {
// GH Action runners are slow, graceful shutdown is not guaranteed on Quarkus
// RESTEASY004687: Closing a class org.jboss.resteasy.client.jaxrs.engines.ManualClosingApacheHttpClient43Engine$CleanupAction instance for you.
Pattern.compile(".*RESTEASY004687: Closing a class.*CleanupAction.*"),
// https://github.com/quarkusio/quarkus/issues/34626
Pattern.compile("\\[Quarkus build analytics\\] Analytics remote config not received."),
}),
GENERATED_SKELETON(new Pattern[]{
// Harmless warning
Expand Down Expand Up @@ -81,6 +91,10 @@ public enum WhitelistLogLines {
Pattern.compile(".*Checksum validation failed, expected 2811ba27a71a8bda0602161ffe2f6e1429da8068 but is 36257165a0945753efb3f9d473d86c6f4c6c6f6e.*"),
Pattern.compile(".*Could not validate integrity of download from https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.7.0.Final/arquillian-bom-1.7.0.Final.pom.*"),
Pattern.compile(".*org.eclipse.aether.util.concurrency.RunnableErrorForwarder.*"),
// To be able to run on Quarkus < 3.2 which does not support analytics
Pattern.compile(".*Unrecognized configuration key \"quarkus.analytics.disabled\" was provided.*"),
// https://github.com/quarkusio/quarkus/issues/34626
Pattern.compile("\\[Quarkus build analytics\\] Analytics remote config not received."),
}),
// Quarkus is not being gratefully shutdown in Windows when running in Dev mode.
// Reported by https://github.com/quarkusio/quarkus/issues/14647.
Expand All @@ -91,6 +105,8 @@ public enum WhitelistLogLines {
Pattern.compile(".*http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException.*"),
Pattern.compile(".*To see the full stack trace of the errors, re-run Maven with the -e switch.*"),
Pattern.compile("\\[ERROR\\] *"),
// https://github.com/quarkusio/quarkus/issues/34626
Pattern.compile("\\[Quarkus build analytics\\] Analytics remote config not received."),
});

// Depending to the OS and also on the Quarkus extensions, the Native build might print some warnings about duplicate entries
Expand Down