cstamas commented on code in PR #1079: URL: https://github.com/apache/maven/pull/1079#discussion_r1158472743
########## maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java: ########## @@ -70,8 +72,12 @@ private ValidationLevel validationLevel(RepositorySystemSession session) { try { return ValidationLevel.valueOf(level.toUpperCase(Locale.ENGLISH)); } catch (IllegalArgumentException e) { - throw new IllegalArgumentException( - "Invalid value specified for property " + MAVEN_PLUGIN_VALIDATION_KEY + ": '" + level + "'", e); + logger.warn( + "Invalid value specified for property '{}': '{}'. Supported values are (case insensitive): {}", Review Comment: Same here: changed to quoted user supplied value (that really can be anything) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org