- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 1,089 for artifact (0.04 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/TransferListenerAdapter.java
if (artifact == null) { artifact = new MavenArtifact(repository.getUrl(), resource); artifacts.put(resource, artifact); } return artifact; } } }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.1K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilterTest.java
assertFalse(filter.include(newArtifact(Artifact.SCOPE_RUNTIME))); assertFalse(filter.include(newArtifact(Artifact.SCOPE_TEST))); } @Test void testIncludeCompilePlusRuntime() { ScopeArtifactFilter filter = new ScopeArtifactFilter(Artifact.SCOPE_COMPILE_PLUS_RUNTIME); assertTrue(filter.include(newArtifact(Artifact.SCOPE_COMPILE)));
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 3.8K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/ReleaseArtifactTransformation.java
artifact.addMetadata(metadata); } @Override public void transformForDeployment( Artifact artifact, ArtifactRepository remoteRepository, ArtifactRepository localRepository) { ArtifactMetadata metadata = createMetadata(artifact); artifact.addMetadata(metadata); } private ArtifactMetadata createMetadata(Artifact artifact) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.6K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstaller.java
install(session, Collections.singletonList(artifact)); } /** * @param session the repository session * @param artifacts Collection of {@link ProducedArtifact MavenArtifacts} * @throws ArtifactInstallerException if the given artifact cannot be found or the * installation has failed * @throws IllegalArgumentException if {@code request} is {@code null} or parameter
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 2.9K bytes - Click Count (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
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.2K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtension.java
public String getVersion() { return this.version; } // -- String getVersion() /** * Set the artifact ID of the extension. * * @param artifactId a artifactId object. */ public void setArtifactId(String artifactId) { this.artifactId = artifactId; } // -- void setArtifactId( String ) /** * Set the class loading strategy: 'self-first' (the default),
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 4.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/resolver/MavenChainedWorkspaceReader.java
} @Override public Model findModel(Artifact artifact) { requireNonNull(artifact, "artifact cannot be null"); Model model = null; for (WorkspaceReader workspaceReader : readers) { if (workspaceReader instanceof MavenWorkspaceReader mavenWorkspaceReader) { model = mavenWorkspaceReader.findModel(artifact); if (model != null) { break;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultMavenProjectHelper.java
projectArtifact, projectArtifact.getType(), artifactClassifier, projectArtifact.getArtifactHandler()); artifact.setFile(artifactFile); artifact.setResolved(true); attachArtifact(project, artifact); } /** * Add an attached artifact or replace the file for an existing artifact. *
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 4.3K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java
*/ package org.apache.maven.artifact.installer; import java.io.File; import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.repository.ArtifactRepository; /** */ @Deprecated public interface ArtifactInstaller { String ROLE = ArtifactInstaller.class.getName(); /** * Install an artifact from a particular directory. The artifact handler is used to determineCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.3K bytes - Click Count (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-child.xml
<modelVersion>4.0.0</modelVersion> <parent> <groupId>inheritance</groupId> <artifactId>parent</artifactId> <version>11-SNAPSHOT</version> </parent> <artifactId>child-artifact-id</artifactId> <name>Model inheritance test parent: module directory != artifactId</name> <description> artifactId == "child-artifact-id" but expect path on SCM and site == "child"
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.6K bytes - Click Count (0)