[MNG-7797] Return BRIEF mode (#1132)

Make BRIEF a legal value again.

---

https://issues.apache.org/jira/browse/MNG-7797
This commit is contained in:
Henning Schmiedehausen 2023-06-01 08:24:31 -07:00 committed by GitHub
parent 26ee15a47e
commit 8552ac3fea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,6 +58,7 @@ private enum ValidationReportLevel {
NONE, // mute validation completely (validation issue collection still happens, it is just not reported!)
INLINE, // inline, each "internal" problem one line next to mojo invocation
SUMMARY, // at end, list of plugin GAVs along with "internal" issues
BRIEF, // synonym to SUMMARY
VERBOSE // at end, list of plugin GAVs along with detailed report of ANY validation issues
}