- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for copyArtifact (0.32 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java
*/ public static <T extends Collection<Artifact>> T copyArtifacts(Collection<Artifact> from, T to) { for (Artifact artifact : from) { to.add(ArtifactUtils.copyArtifact(artifact)); } return to; } public static <K, T extends Map<K, Artifact>> T copyArtifacts(Map<K, ? extends Artifact> from, T to) { if (from != null) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
setOriginalModel(project.getOriginalModel()); } setExecutionRoot(project.isExecutionRoot()); if (project.getArtifact() != null) { setArtifact(ArtifactUtils.copyArtifact(project.getArtifact())); } if (project.getManagedVersionMap() != null) { setManagedVersionMap(project.getManagedVersionMap()); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Aug 29 12:47:20 GMT 2025 - 67K bytes - Click Count (0)