- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 34 for Coordinates (0.1 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java
static ArtifactResolverRequest build( @Nonnull Session session, @Nonnull Collection<? extends ArtifactCoordinates> coordinates) { return builder() .session(requireNonNull(session, "session cannot be null")) .coordinates(requireNonNull(coordinates, "coordinates cannot be null")) .build(); } @Nonnull static ArtifactResolverRequest build(
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 5.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeStrategy.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 7.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java
* This is the default behavior. */ RELEASE_OR_SNAPSHOT } /** * Gets the artifact coordinates whose version range should be resolved. * The coordinates may contain a version range (e.g., "[1.0,2.0)") or a single version. * * @return the artifact coordinates, never {@code null} */ @Nonnull ArtifactCoordinates getArtifactCoordinates(); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 10.4K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/GAVUtilsTest.java
UpgradeContext context = createMockContext(); Set<Coordinates> gavs = InferenceStrategy.computeAllArtifactCoordinates(context, pomMap); assertEquals(2, gavs.size()); assertTrue(gavs.contains(Coordinates.of("com.example", "parent-project", "1.0.0"))); assertTrue(gavs.contains(Coordinates.of("com.example", "child-project", "1.0.0"))); } @TestCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 17.3K bytes - Click Count (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestImplementationTest.java
ArtifactResolverRequest request1 = builder.session(session) .coordinates(Arrays.asList(coords1, coords2)) .repositories(repositories1) .build(); ArtifactResolverRequest request2 = builder.session(session) .coordinates(Arrays.asList(coords1, coords2)) .repositories(repositories2) .build();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 4.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java
* if this source represents a resolved artifact with known coordinates. * <p> * This method is primarily used by resolved sources to provide the model ID * without requiring the XML to be parsed. For build sources, this typically * returns {@code null} since the coordinates are determined by parsing the POM. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 4.4K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 27.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Dec 17 16:17:01 GMT 2025 - 10.9K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts
val requested = this.requested as? ModuleComponentSelector ?: return@all keepPatterns.forEach { coordinates, _ -> if ("${requested.group}:${requested.module}" == coordinates) { val updated = DefaultModuleComponentSelector.withAttributes( requested,Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 25 16:18:05 GMT 2025 - 5.6K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java
* from repositories (using groupId:artifactId:version coordinates) and * downloaded to the local repository. These sources do not support resolving * other sources. * * @param path the path to the POM file or project directory * @param modelId the modelId (groupId:artifactId:version coordinates) * @return a new ModelSource instance configured as a resolved source
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 8.2K bytes - Click Count (0)