- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 1,060 for artifact1 (0.06 sec)
-
compat/maven-repository-metadata/pom.xml
<dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-annotations</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-metadata</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-support</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 3.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java
* @param artifactId The artifact id of the cache record, must not be {@code null}. * @param version The version of the cache record, must not be {@code null}. * @param tag The tag of the cache record, must not be {@code null}. * @param data The data to store in the cache, must not be {@code null}. */ void put(String groupId, String artifactId, String version, String tag, Object data); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 2.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java
public ModelSource resolveModel(String groupId, String artifactId, String version) throws UnresolvableModelException { File pomFile = null; if (modelPool != null) { pomFile = modelPool.get(groupId, artifactId, version); } if (pomFile == null) { Artifact pomArtifact = new DefaultArtifact(groupId, artifactId, "", "pom", version); try {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 11.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorUtils.java
/** * Creates POM artifact out of passed in artifact by dropping classifier (if exists) and rewriting extension to * "pom". Unconditionally, unlike {@link #toPomArtifact(Artifact)} that does this only for artifacts without * classifiers. * * @since 4.0.0 */ public static Artifact toPomArtifactUnconditionally(Artifact artifact) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 4K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java
assertEquals("bar", project.getProperties().getProperty("foo")); ArrayList<Artifact> artifacts = new ArrayList<>(project.getArtifacts()); assertEquals(1, artifacts.size()); assertEquals(INJECTED_ARTIFACT_ID, artifacts.get(0).getArtifactId()); } @Test void testReactorDependencyInjection() throws Exception {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/OldestConflictResolver.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 oldest declaration. Oldest 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/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
PluginDescriptor pluginDescriptor = pluginDescriptorCache.get(cacheKey, () -> { org.eclipse.aether.artifact.Artifact artifact = pluginDependenciesResolver.resolve(plugin, repositories, session); Artifact pluginArtifact = RepositoryUtils.toArtifact(artifact); PluginDescriptor descriptor = extractPluginDescriptor(pluginArtifact, plugin);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 16:35:21 UTC 2025 - 46.4K 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) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java
setForceUpdate(request.isForceUpdate()); } public Artifact getArtifact() { return artifact; } public ArtifactResolutionRequest setArtifact(Artifact artifact) { this.artifact = artifact; return this; } public ArtifactResolutionRequest setArtifactDependencies(Set<Artifact> artifactDependencies) { this.artifactDependencies = artifactDependencies;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java
* should be split. ie scope, file, etc depend on the context of use, whereas everything else is immutable. */ @Deprecated public class ActiveProjectArtifact implements Artifact { private final Artifact artifact; private final MavenProject project; public ActiveProjectArtifact(MavenProject project, Artifact artifact) { this.artifact = artifact; this.project = project;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.9K bytes - Viewed (0)