src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorParser.java [1197:1209]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    PatternMatcher matcher = getPatternMatcher(attributes.getValue("matcher"));
                    String org = settings.substitute(attributes.getValue("org"));
                    if (org == null) {
                        org = PatternMatcher.ANY_EXPRESSION;
                    }
                    String module = settings.substitute(attributes.getValue("module"));
                    if (module == null) {
                        module = PatternMatcher.ANY_EXPRESSION;
                    }
                    ArtifactId aid = new ArtifactId(new ModuleId(org, module), name, type, ext);
                    Map<String, String> extraAtt = ExtendableItemHelper.getExtraAttributes(settings,
                            attributes, Arrays.asList("org", "module", "name", "type", "ext", "matcher",
                                    "conf"));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorParser.java [1214:1226]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    PatternMatcher matcher = getPatternMatcher(attributes.getValue("matcher"));
                    String org = settings.substitute(attributes.getValue("org"));
                    if (org == null) {
                        org = PatternMatcher.ANY_EXPRESSION;
                    }
                    String module = settings.substitute(attributes.getValue("module"));
                    if (module == null) {
                        module = PatternMatcher.ANY_EXPRESSION;
                    }
                    ArtifactId aid = new ArtifactId(new ModuleId(org, module), name, type, ext);
                    Map<String, String> extraAtt = ExtendableItemHelper.getExtraAttributes(settings,
                            attributes, Arrays.asList("org", "module", "name", "type", "ext", "matcher",
                                    "conf"));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



