- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getTargetPath (0.05 sec)
-
impl/maven-core/src/test/java/org/apache/maven/project/ResourceIncludeTest.java
assertEquals( "custom-output", customResource.getTargetPath(), "targetPath should be preserved in ConnectedResource"); // Test that includes modification preserves targetPath (tests ConnectedResource functionality) customResource.addInclude("*.properties"); assertEquals( "custom-output", customResource.getTargetPath(), "targetPath should survive includes modification");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 07 13:11:07 UTC 2025 - 12.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
val = interpolate(org); if (org != val) { resource.setDirectory(val); } // TargetPath org = resource.getTargetPath(); val = interpolate(org); if (org != val) { resource.setTargetPath(val); } // Filtering
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 43.1K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
protected void mergeResource_TargetPath( Resource target, Resource source, boolean sourceDominant, Map<Object, Object> context) { String src = source.getTargetPath(); if (src != null) { if (sourceDominant || target.getTargetPath() == null) { target.setTargetPath(src); target.setLocation("targetPath", source.getLocation("targetPath")); } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 11:21:39 UTC 2025 - 99.2K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 26 03:07:35 UTC 2025 - 133.3K bytes - Viewed (0)