mirror of https://github.com/apache/maven.git
fix
This commit is contained in:
parent
43277a648e
commit
8b8bb3b3b1
|
@ -28,7 +28,7 @@ import org.apache.maven.api.annotations.Nullable;
|
|||
import org.apache.maven.api.annotations.ThreadSafe;
|
||||
|
||||
/**
|
||||
* An immutable XML node.
|
||||
* An immutable xml node.
|
||||
*
|
||||
* @since 4.0.0
|
||||
*/
|
||||
|
@ -39,6 +39,8 @@ public interface XmlNode {
|
|||
|
||||
String CHILDREN_COMBINATION_MODE_ATTRIBUTE = "combine.children";
|
||||
|
||||
String CHILDREN_COMBINATION_MERGE = "merge";
|
||||
|
||||
String CHILDREN_COMBINATION_APPEND = "append";
|
||||
|
||||
/**
|
||||
|
@ -52,6 +54,8 @@ public interface XmlNode {
|
|||
|
||||
String SELF_COMBINATION_OVERRIDE = "override";
|
||||
|
||||
String SELF_COMBINATION_MERGE = "merge";
|
||||
|
||||
String SELF_COMBINATION_REMOVE = "remove";
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue