Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stringFiltering (0.07 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/ConnectedResource.java

                    .directory(sourceRoot.directory().toString())
                    .includes(sourceRoot.includes())
                    .excludes(sourceRoot.excludes())
                    .filtering(Boolean.toString(sourceRoot.stringFiltering()))
                    .targetPath(sourceRoot.targetPath().map(Path::toString).orElse(null))
                    .build());
            this.originalSourceRoot = sourceRoot;
            this.scope = scope;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 07 13:11:07 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java

            });
        }
    
        /**
         * {@return whether resources are filtered to replace tokens with parameterized values}
         * The default value is {@code false}.
         */
        default boolean stringFiltering() {
            return false;
        }
    
        /**
         * {@return whether the directory described by this source element should be included in the build}
         * The default value is {@code true}.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 07 13:11:07 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

                compiler rather than Maven.</p>
                ]]>
              </description>
              <type>String</type>
            </field>
            <field>
              <name>stringFiltering</name>
              <version>4.1.0+</version>
              <description>
                <![CDATA[
                Whether resources are filtered to replace tokens with parameterized values.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
Back to top