Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for developerConnection (0.06 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("https://parent.url/scm/child", pom.getValue("scm/connection"));
            assertEquals("https://parent.url/scm/child", pom.getValue("scm/developerConnection"));
            assertEquals("https://parent.url/issues", pom.getValue("issueManagement/url"));
            assertEquals("https://parent.url/ci", pom.getValue("ciManagement/url"));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

                    target.setChildScmDeveloperConnectionInheritAppendPath(src);
                    target.setLocation(
                            "child.scm.developerConnection.inherit.append.path",
                            source.getLocation("child.scm.developerConnection.inherit.append.path"));
                }
            }
        }
    
        protected void mergeScm_ChildScmUrlInheritAppendPath(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  3. pom.xml

    	</developers>
    	<issueManagement>
    		<url>https://github.com/codelibs/fess/issues</url>
    	</issueManagement>
    	<scm>
    		<connection>scm:git:******@****.***:codelibs/fess.git</connection>
    		<developerConnection>scm:git:******@****.***:codelibs/fess.git</developerConnection>
    		<url>https://github.com/codelibs/fess</url>
    	  <tag>HEAD</tag>
      </scm>
    	<parent>
    		<groupId>org.codelibs.fess</groupId>
    		<artifactId>fess-parent</artifactId>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 49.4K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    org = scm.getConnection();
                    val = interpolate(org);
                    if (org != val) {
                        scm.setConnection(val);
                    }
                    // DeveloperConnection
                    org = scm.getDeveloperConnection();
                    val = interpolate(org);
                    if (org != val) {
                        scm.setDeveloperConnection(val);
                    }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

                ]]>
              </description>
              <type>String</type>
            </field>
            <field>
              <name>developerConnection</name>
              <version>4.0.0+</version>
              <description>
                <![CDATA[
                Just like {@code connection}, but for developers, i.e. this scm connection
    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