- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 656 for Artifacts (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/RepositoryAwareRequest.java
* * <p>Remote repositories are used for: * <ul> * <li>Resolving artifacts and their metadata</li> * <li>Downloading parent POMs and dependency POMs</li> * <li>Retrieving version information and ranges</li> * <li>Accessing plugin artifacts and their dependencies</li> * </ul> * * <p>Repository validation ensures data integrity by: * <ul>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java
List<Artifact> artifacts = (List<Artifact>) value; assertEquals(1, artifacts.size()); Artifact result = artifacts.get(0); assertEquals("testGroup", result.getGroupId()); } @Test void testRootDirectoryNotPrefixed() throws Exception { ExpressionEvaluator ee = createExpressionEvaluator(createDefaultProject(), null, new Properties());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
toArtifacts(artifacts, node.getChildren(), nodeTrail, filter); } } public static Artifact toArtifact(org.apache.maven.artifact.Artifact artifact) { if (artifact == null) { return null; } String version = artifact.getVersion(); if (version == null && artifact.getVersionRange() != null) { version = artifact.getVersionRange().toString();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 04 18:33:16 UTC 2025 - 15.8K bytes - Viewed (0) -
guava-bom/pom.xml
<groupId>com.google.guava</groupId> <artifactId>guava-bom</artifactId> <version>999.0.0-HEAD-jre-SNAPSHOT</version> <packaging>pom</packaging> <name>Guava BOM</name> <description>BOM for Guava artifacts</description> <url>https://github.com/google/guava</url> <inceptionYear>2010</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name>
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 29 19:50:42 UTC 2025 - 3.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/FarthestConflictResolver.java
// ConflictResolver methods ----------------------------------------------- /* * @see org.apache.maven.artifact.resolver.conflict.ConflictResolver#resolveConflict(org.apache.maven.artifact.resolver.ResolutionNode, * org.apache.maven.artifact.resolver.ResolutionNode) */ @Override public ResolutionNode resolveConflict(ResolutionNode node1, ResolutionNode node2) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java
* * @param plugin The plugin whose descriptor should be retrieved, must not be {@code null}. * @param repositories The plugin repositories to use for resolving the plugin's main artifact, must not be {@code * null}. * @param session The repository session to use for resolving the plugin's main artifact, must not be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/NewestConflictResolver.java
import javax.inject.Named; import javax.inject.Singleton; import org.apache.maven.artifact.resolver.ResolutionNode; import org.apache.maven.artifact.versioning.ArtifactVersion; import org.apache.maven.artifact.versioning.OverConstrainedVersionException; /** * Resolves conflicting artifacts by always selecting the newest declaration. Newest is defined as the
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
assertInstanceOf(Collection.class, value); @SuppressWarnings("unchecked") Collection<Artifact> artifacts = (Collection<Artifact>) value; assertEquals(1, artifacts.size()); Artifact result = artifacts.iterator().next(); assertEquals("org.myco.plugins", result.getGroupId()); } @TestRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.3K bytes - Viewed (0) -
impl/maven-core/src/site/apt/getting-to-container-configured-mojos.apt
particularly when we move mojos to a singleton instantiation model, and then run a reactorized project...the successive calls may leave behind configuration artifacts from invocation to invocation. Maven Modifications * DefaultPluginManager s/getMojoConfiguration()/getConfiguration()/g That should re-enable usage of mojo configuration. Ideally, we won't need any
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/NearestConflictResolver.java
// ConflictResolver methods ----------------------------------------------- /* * @see org.apache.maven.artifact.resolver.conflict.ConflictResolver#resolveConflict(org.apache.maven.artifact.resolver.ResolutionNode, * org.apache.maven.artifact.resolver.ResolutionNode) */ @Override public ResolutionNode resolveConflict(ResolutionNode node1, ResolutionNode node2) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.8K bytes - Viewed (0)