- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for Scm (0.01 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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>"**/.gitignore"</code>, <code>"**/.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) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java
/** * Calculates the relative path from the base directory of the parent to the parent directory of the base directory * of the child. The general idea is to adjust inherited URLs to match the project layout (in SCM). * * <p>This calculation is only a heuristic based on our conventions. * In detail, the algo relies on the following assumptions: <ul>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 13.4K bytes - Viewed (0)