- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for pluginArtifacts (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 51.8K bytes - Click Count (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) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Aug 29 12:47:20 GMT 2025 - 67K bytes - Click Count (0)