From 47067746ce98c3d3fc325385418f2f7c817cb0cb Mon Sep 17 00:00:00 2001 From: Kyrylo Shpak Date: Thu, 3 Jun 2021 17:09:40 +0200 Subject: [PATCH] Whitelist maven warnings raised by tag --- .../io/quarkus/ts/startstop/utils/WhitelistLogLines.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/testsuite/src/it/java/io/quarkus/ts/startstop/utils/WhitelistLogLines.java b/testsuite/src/it/java/io/quarkus/ts/startstop/utils/WhitelistLogLines.java index 57af6e3d..2a269df1 100755 --- a/testsuite/src/it/java/io/quarkus/ts/startstop/utils/WhitelistLogLines.java +++ b/testsuite/src/it/java/io/quarkus/ts/startstop/utils/WhitelistLogLines.java @@ -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.