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

[1.11] Whitelist maven warnings raised by <mirror><blocked> tag #88

Merged
merged 1 commit into from
Jun 4, 2021
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,10 @@ public enum WhitelistLogLines {
// (no explicit configuration, none or multiple JDBC driver extensions)
// Result of DevServices support https://github.com/quarkusio/quarkus/pull/14960
Pattern.compile(".*Unable to determine a database type for default datasource.*"),
// 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'.*"),
// Maven 3.8.1 throw a warn msg related to a mirror default configuration (next 3 patterns)
Pattern.compile(".*Unrecognised tag: 'blocked'.*"),
Pattern.compile(".*Some problems were encountered while building the effective settings.*"),
Pattern.compile("\\[WARNING\\] "),
}),
// Quarkus is not being gratefully shutdown in Windows when running in Dev mode.
// Reported by https://github.com/quarkusio/quarkus/issues/14647.
Expand Down