Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setDeveloperConnection (0.53 seconds)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java

                    target.setDeveloperConnection(src);
                    target.setLocation("developerConnection", source.getLocation("developerConnection"));
                } else if (target.getDeveloperConnection() == null) {
                    String e = extrapolateChildUrl(src, source.isChildScmDeveloperConnectionInheritAppendPath(), context);
                    target.setDeveloperConnection(e);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 21.7K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    }
                    // DeveloperConnection
                    org = scm.getDeveloperConnection();
                    val = interpolate(org);
                    if (org != val) {
                        scm.setDeveloperConnection(val);
                    }
                    // Tag
                    org = scm.getTag();
                    val = interpolate(org);
                    if (org != val) {
                        scm.setTag(val);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 43.1K bytes
    - Click Count (0)
Back to Top