- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getPomArtifact (0.08 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/ProducedArtifact.java
import org.apache.maven.api.annotations.Immutable; /** * An {@link Artifact} that is being produced by a {@link Project} during the build. * * <p>Produced artifacts includes:</p><ul> * <li>{@linkplain Project#getPomArtifact() the project POM artifact}</li> * <li>{@linkplain Project#getMainArtifact() the main artifact}</li>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 1.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* * @see org.apache.maven.api.services.ArtifactManager#getPath(Artifact) */ @Nonnull default ProducedArtifact getPomArtifact() { return getArtifacts().get(0); } /** * Returns the project main artifact, which is the artifact produced by this project build, if applicable.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 7.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ResolutionGroup.java
this.artifacts = artifacts; this.managedVersions = managedVersions; this.resolutionRepositories = resolutionRepositories; } public Artifact getPomArtifact() { return pomArtifact; } public Artifact getRelocatedArtifact() { return relocatedArtifact; } public Set<Artifact> getArtifacts() { return artifacts; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java
} protected void put(CacheKey cacheKey, ResolutionGroup result) { CacheRecord cacheRecord = new CacheRecord( result.getPomArtifact(), result.getRelocatedArtifact(), result.getArtifacts(), result.getManagedVersions(), result.getResolutionRepositories());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
if (cached != null // if the POM has no file, we cached a missing artifact, only return the cached data if no update forced && (!request.isForceUpdate() || hasFile(cached.getPomArtifact()))) { return cached; } List<Dependency> dependencies; List<Dependency> managedDependencies = null; List<ArtifactRepository> pomRepositories = null;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0)