Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setChildScmConnectionInheritAppendPath (0.15 sec)

  1. compat/maven-model/pom.xml

                  <exclude>org.apache.maven.model.Resource#initMergeId():METHOD_REMOVED</exclude>
                  <exclude>org.apache.maven.model.Scm#setChildScmConnectionInheritAppendPath(boolean):METHOD_REMOVED</exclude>
                  <exclude>org.apache.maven.model.Scm#setChildScmDeveloperConnectionInheritAppendPath(boolean):METHOD_REMOVED</exclude>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    org = scm.getChildScmConnectionInheritAppendPath();
                    val = interpolate(org);
                    if (org != val) {
                        scm.setChildScmConnectionInheritAppendPath(val);
                    }
                    // ChildScmDeveloperConnectionInheritAppendPath
                    org = scm.getChildScmDeveloperConnectionInheritAppendPath();
                    val = interpolate(org);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  3. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            String src = source.getChildScmConnectionInheritAppendPath();
            if (src != null) {
                if (sourceDominant || target.getChildScmConnectionInheritAppendPath() == null) {
                    target.setChildScmConnectionInheritAppendPath(src);
                    target.setLocation(
                            "child.scm.connection.inherit.append.path",
                            source.getLocation("child.scm.connection.inherit.append.path"));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
Back to top