Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for SCM (0.01 sec)

  1. compat/maven-model-builder/src/site/apt/index.apt

      <<<project/@child.project.url.inherit.append.path>>>,
      <<<project/distributionManagement/site/@child.site.url.inherit.append.path>>>,
      <<<project/scm/@child.scm.connection.inherit.append.path>>>,
      <<<project/scm/@child.scm.developerConnection.inherit.append.path>>> and
      <<<project/scm/@child.scm.url.inherit.append.path>>>.
    
      []
    
    * Model Interpolation
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 03 08:42:52 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

                this.modelVersion = modelVersion;
            }
    
            public void setGroupId(String groupId) {
                this.groupId = groupId;
            }
    
            public void setScm(Scm scm) {
                this.scm = scm;
            }
    
            public void addDependency(Dependency dependency) {
                this.dependencies.add(dependency);
            }
    
            public void setBuild(Build build) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java

                    target.setLocation("url", source.getLocation("url"));
                }
            }
        }
    
        @Override
        protected void mergeScm_Url(Scm target, Scm source, boolean sourceDominant, Map<Object, Object> context) {
            String src = source.getUrl();
            if (src != null) {
                if (sourceDominant) {
                    target.setUrl(src);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

            }
    
            private void visit(Scm scm) {
                if (scm != null) {
                    String org, val;
                    // Connection
                    org = scm.getConnection();
                    val = interpolate(org);
                    if (org != val) {
                        scm.setConnection(val);
                    }
                    // DeveloperConnection
                    org = scm.getDeveloperConnection();
    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. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

        public void testShouldThrowExceptionOnRecursiveScmConnectionReference() throws Exception {
            var model = new Model(org.apache.maven.api.model.Model.newBuilder()
                    .scm(org.apache.maven.api.model.Scm.newBuilder()
                            .connection("${project.scm.connection}/somepath")
                            .build())
                    .build());
    
            ModelInterpolator interpolator = createInterpolator();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:36 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  6. impl/maven-core/src/site/apt/offline-mode.apt

      a server container in-JVM, running tests against it, and shutting it down.
    
    ** SCM mojos
    
      See below for discussion on SCM-related operations. Any mojo which
      carries out some analysis or other interaction with a SCM system
      will likely be unavailable when in offline mode.
    
    
    * Implications for Subsystems
    
    ** Maven-Wagon
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                                    .build(null),
                            model)
                    .mailingLists(null)
                    .issueManagement(null)
                    .scm(
                            model.getScm() != null
                                    ? Scm.newBuilder(model.getScm(), true)
                                            .childScmConnectionInheritAppendPath(null)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Nov 27 07:40:26 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  8. pom.xml

    			<organizationUrl>https://codelibs.co</organizationUrl>
    		</developer>
    	</developers>
    	<scm>
    		<connection>scm:git:******@****.***:codelibs/jcifs.git</connection>
    		<developerConnection>scm:git:******@****.***:codelibs/jcifs.git</developerConnection>
    		<url>https://github.com/codelibs/jcifs</url>
    	  <tag>HEAD</tag>
      </scm>
    	<properties>
    		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java

         * by Source Code Management (<abbr>SCM</abbr>) software or by the operating system.
         * Examples: <code>"**&sol;.gitignore"</code>, <code>"**&sol;.DS_Store"</code>.</p>
         *
         * @param defaultIncludes the default includes if unspecified by the user
         * @param useDefaultExcludes whether to add the default set of patterns to exclude,
         *        mostly Source Code Management (<abbr>SCM</abbr>) files
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 07 13:11:07 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  10. impl/maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

          </otherArchives>
        </mailingList>
      </mailingLists>
      <scm>
        <connection>scm:svn:http://svn.apache.org/repos/asf/maven/components/trunk</connection>
        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/components/trunk</developerConnection>
        <url>http://svn.apache.org/viewcvs.cgi/maven/components/trunk</url>
      </scm>
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top