forked from devonfw/IDEasy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devonfw#621: fixed ID fallback for XML merger
- Loading branch information
Showing
6 changed files
with
57 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<root> | ||
<element attr1="newValue1" name="name1">New text1</element> | ||
<element attr1="oldValue2" name="name2">Old text2</element> | ||
<parent attr1="newSomething" id="parent"> | ||
<child>New Child Text</child> | ||
</parent> | ||
<parent attr1="oldSomething2" id="parent2"> | ||
<child>Old Child Text2</child> | ||
</parent> | ||
</root> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<root xmlns:merge="https://github.com/devonfw/IDEasy/merge" merge:strategy="COMBINE"> | ||
<element name="name1" attr1="newValue1">New text1</element> | ||
<parent id="parent" attr1="newSomething"> | ||
<child>New Child Text</child> | ||
</parent> | ||
</root> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<root> | ||
<element attr1="oldValue1" name="name1">Old text1</element> | ||
<element attr1="oldValue2" name="name2">Old text2</element> | ||
<parent id="parent" attr1="oldSomething"> | ||
<child>Old Child Text</child> | ||
</parent> | ||
<parent id="parent2" attr1="oldSomething2"> | ||
<child>Old Child Text2</child> | ||
</parent> | ||
</root> |