Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getRelativePath (0.04 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                }
                buffer.append(": ").append(e.getMessage());
                if (childModel.getProjectDirectory() != null) {
                    if (parent.getRelativePath() == null || parent.getRelativePath().length() <= 0) {
                        buffer.append(" and 'parent.relativePath' points at no local POM");
                    } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:08 UTC 2025
    - 55.3K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    val = interpolate(org);
                    if (org != val) {
                        parent.setVersion(val);
                    }
                    // RelativePath
                    org = parent.getRelativePath();
                    val = interpolate(org);
                    if (org != val) {
                        parent.setRelativePath(val);
                    }
                }
            }
    
    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

        protected void mergeParent_RelativePath(
                Parent target, Parent source, boolean sourceDominant, Map<Object, Object> context) {
            String src = source.getRelativePath();
            if (src != null) {
                if (sourceDominant || target.getRelativePath() == null) {
                    target.setRelativePath(src);
                    target.setLocation("relativePath", source.getLocation("relativePath"));
                }
    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