Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setPluginArtifacts (0.29 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            if (artifactMap == null) {
                artifactMap = ArtifactUtils.artifactMapByVersionlessId(getArtifacts());
            }
            return artifactMap;
        }
    
        public void setPluginArtifacts(Set<Artifact> pluginArtifacts) {
            this.pluginArtifacts = pluginArtifacts;
    
            this.pluginArtifactMap = null;
        }
    
        public Set<Artifact> getPluginArtifacts() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    if (artifact != null) {
                        pluginArtifacts.add(artifact);
                    }
                }
                project.setPluginArtifacts(pluginArtifacts);
    
                // reportArtifacts
                Set<Artifact> reportArtifacts = new HashSet<>();
                for (ReportPlugin report :
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
Back to top