mirror of https://github.com/apache/maven.git
[MNG-7709] Regression in configuration merge (#1023)
This commit is contained in:
parent
dc8ec4c973
commit
116ca6a3ad
|
@ -230,7 +230,7 @@ public class XmlNodeImpl implements Serializable, XmlNode {
|
|||
|
||||
for (Map.Entry<String, String> attr : recessive.getAttributes().entrySet()) {
|
||||
String key = attr.getKey();
|
||||
if (isEmpty(dominant.getAttribute(key)) && !SELF_COMBINATION_MODE_ATTRIBUTE.equals(key)) {
|
||||
if (isEmpty(dominant.getAttribute(key))) {
|
||||
if (attrs == null) {
|
||||
attrs = new HashMap<>();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue