Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for childScmConnectionInheritAppendPath (0.25 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                    .scm(
                            model.getScm() != null
                                    ? Scm.newBuilder(model.getScm(), true)
                                            .childScmConnectionInheritAppendPath(null)
                                            .childScmUrlInheritAppendPath(null)
                                            .childScmDeveloperConnectionInheritAppendPath(null)
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Mar 04 19:49:40 GMT 2026
    - 22.3K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    org = scm.getUrl();
                    val = interpolate(org);
                    if (org != val) {
                        scm.setUrl(val);
                    }
                    // ChildScmConnectionInheritAppendPath
                    org = scm.getChildScmConnectionInheritAppendPath();
                    val = interpolate(org);
                    if (org != val) {
                        scm.setChildScmConnectionInheritAppendPath(val);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 43.1K bytes
    - Click Count (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

                ]]>
              </description>
              <type>String</type>
            </field>
            <field xml.attribute="true" xml.tagName="child.scm.connection.inherit.append.path">
              <name>childScmConnectionInheritAppendPath</name>
              <version>4.0.0+</version>
              <description>
                <![CDATA[
                When children inherit from scm connection, append path or not? Note: While the type
    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)
Back to Top