Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getTargetPath (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. api/maven-api-model/src/main/mdo/maven.mdo

              <code>
                <![CDATA[
        /**
         * @see java.lang.Object#toString()
         */
        public String toString() {
            return "Resource {targetPath: " + getTargetPath() + ", filtering: " + isFiltering() + ", " + super.toString() + "}";
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 17 09:48:21 GMT 2026
    - 133.5K bytes
    - Click Count (0)
  2. 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"));
                }
            }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Apr 03 11:21:39 GMT 2025
    - 99.2K bytes
    - Click Count (0)
Back to Top