Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for scm (0.03 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                    builder.location("url", source.getLocation("url"));
                }
            }
        }
    
        @Override
        protected void mergeScm_Url(
                Scm.Builder builder, Scm target, Scm source, boolean sourceDominant, Map<Object, Object> context) {
            String src = source.getUrl();
            if (src != null) {
                if (sourceDominant) {
                    builder.url(src);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. api/maven-api-xml/src/site/site.xml

      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Dec 31 16:32:07 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelUrlNormalizer.java

            builder.url(normalize(model.getUrl()));
    
            Scm scm = model.getScm();
            if (scm != null) {
                builder.scm(Scm.newBuilder(scm)
                        .url(normalize(scm.getUrl()))
                        .connection(normalize(scm.getConnection()))
                        .developerConnection(normalize(scm.getDeveloperConnection()))
                        .build());
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. apache-maven/src/site/site.xml

      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
        </menu>
      </body>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 21:16:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. api/maven-api-core/src/site/site.xml

      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Dec 31 16:32:07 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. api/maven-api-model/src/site/site.xml

      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Dec 31 16:32:07 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. api/maven-api-spi/src/site/site.xml

      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 21:16:47 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. api/maven-api-metadata/src/site/site.xml

      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 11 14:06:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. api/maven-api-settings/src/site/site.xml

      xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
    
      <edit>${project.scm.url}</edit>
    
      <body>
        <menu name="Overview">
          <item name="Introduction" href="index.html"/>
          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Dec 31 16:32:07 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. Jenkinsfile

    def tests
    
    try {
    
    def osNode = jenkinsEnv.labelForOS(buildOs)
    node(jenkinsEnv.nodeSelection(osNode)) {
        dir('build') {
            stage('Checkout') {
                checkout scm
            }
    
            def WORK_DIR=pwd()
            def MAVEN_GOAL='verify'
    
            stage('Configure deploy') {
               if (env.BRANCH_NAME in ['master', 'maven-3.8.x', 'maven-3.9.x']){
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top