Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  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 =
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Nov 07 13:11:07 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            String src = source.getTargetPath();
            if (src != null) {
                if (sourceDominant || target.getTargetPath() == null) {
                    target.setTargetPath(src);
                    target.setLocation("targetPath", source.getLocation("targetPath"));
                }
            }
        }
    
        protected void mergeResource_Filtering(
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Apr 03 11:21:39 GMT 2025
    - 99.2K bytes
    - Click Count (0)
Back to Top