- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for pluginArtifacts (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
// pluginArtifacts Set<Artifact> pluginArtifacts = new HashSet<>(); for (Plugin plugin : project.getModel().getDelegate().getBuild().getPlugins()) { Artifact artifact = repositorySystem.createPluginArtifact(new org.apache.maven.model.Plugin(plugin)); if (artifact != null) { pluginArtifacts.add(artifact); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
} return artifactMap; } public void setPluginArtifacts(Set<Artifact> pluginArtifacts) { this.pluginArtifacts = pluginArtifacts; this.pluginArtifactMap = null; } public Set<Artifact> getPluginArtifacts() { return pluginArtifacts; } public Map<String, Artifact> getPluginArtifactMap() { if (pluginArtifactMap == null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0)