Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setTargetPath (0.07 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/project/ResourceIncludeTest.java

            // Create resource with targetPath using Resource constructor pattern
            Resource resourceWithTarget = new Resource();
            resourceWithTarget.setDirectory("src/main/custom");
            resourceWithTarget.setTargetPath("custom-output");
    
            // Convert through DefaultSourceRoot to ensure targetPath is preserved
            DefaultSourceRoot sourceRootFromResource =
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 07 13:11:07 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    }
                    // TargetPath
                    org = resource.getTargetPath();
                    val = interpolate(org);
                    if (org != val) {
                        resource.setTargetPath(val);
                    }
                    // Filtering
                    org = resource.getFiltering();
                    val = interpolate(org);
                    if (org != 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)
Back to top