- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 72 for Coordinate (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java
*/ default ResultItem getResult(ArtifactCoordinates coordinates) { return getResults().get(coordinates); } /** * Represents an individual resolution result for an artifact. */ interface ResultItem { /** * Returns the coordinates of the resolved artifact. * * @return The {@link ArtifactCoordinates} of the artifact.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.7K bytes - Viewed (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"))); } @TestRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 17.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
@Nonnull Session session, @Nonnull ArtifactCoordinates coordinates) { return builder() .session(requireNonNull(session, "session cannot be null")) .groupId(requireNonNull(coordinates, "coordinates cannot be null") .getGroupId()) .artifactId(coordinates.getArtifactId()) .version(coordinates.getVersionConstraint().toString())Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java
import org.apache.maven.model.Dependency; import org.apache.maven.model.Parent; import org.apache.maven.model.Repository; import org.apache.maven.model.building.ModelSource; /** * Resolves a POM from its coordinates. During the build process, the * {@link org.apache.maven.model.building.ModelBuilder} will add any relevant repositories to the model resolver. InRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 5.8K bytes - Viewed (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts
// We only need a few utility classes of this module applyRule<DependencyRemovalByNameRule>("jcifs:jcifs", setOf("servlet-api")) // Bsh moved coordinates. Depend on the new coordinates. applyRule<DependencyRemovalByGroupRule>(libs.testng, setOf("org.beanshell")) applyRule<DependencyAdditionRule>(libs.testng, libs.bsh)Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jul 18 11:32:19 UTC 2025 - 9.3K bytes - Viewed (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();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 4.8K bytes - Viewed (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. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 4.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java
/** * Collects the transitive dependencies of some artifacts and builds a dependency graph for the given path scope. * Note that this operation is only concerned about determining the coordinates of the transitive dependencies and * does not actually resolve the artifact files. * * @param session the {@link Session}, must not be {@code null}Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 9.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 27.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 17 16:17:01 UTC 2025 - 10.9K bytes - Viewed (0)