cstamas opened a new issue, #544:
URL: https://github.com/apache/maven-parent/issues/544
### Affected version
47
### Bug description
The Enforcer plugin configuration for execution `enforce-bytecode-version`
is wrong.
Config is:
```xml
<ignoredScopes>test</ignoredScopes>
```
instead of expected
```xml
<ignoredScopes>
<ignoredScope>test</ignoredScope>
</ignoredScopes>
```
This silently works, but prevents any kind of override. mvnd wants to add
"provided" scope as well, but cannot, only if fully overrides whole
configuration for given execution ID.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]