- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getAllArtifacts (0.06 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
* @return an immutable collection of attached artifacts, may be empty if no artifacts * have been attached yet * @throws IllegalArgumentException if the project is null * @see #getAllArtifacts(Project) */ @Nonnull Collection<ProducedArtifact> getAttachedArtifacts(@Nonnull Project project); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jan 30 23:29:13 UTC 2025 - 12K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
return Collections.unmodifiableCollection(attached); } @Override @Nonnull public Collection<ProducedArtifact> getAllArtifacts(@Nonnull Project project) { requireNonNull(project, "project cannot be null"); ArrayList<ProducedArtifact> result = new ArrayList<>(2); result.addAll(project.getArtifacts());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 17 16:17:01 UTC 2025 - 10.9K bytes - Viewed (0)