Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setReportArtifacts (0.05 sec)

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

                setPluginArtifacts(Collections.unmodifiableSet(project.getPluginArtifacts()));
            }
    
            if (project.getReportArtifacts() != null) {
                setReportArtifacts(Collections.unmodifiableSet(project.getReportArtifacts()));
            }
    
            if (project.getExtensionArtifacts() != null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    if (artifact != null) {
                        reportArtifacts.add(artifact);
                    }
                }
                project.setReportArtifacts(reportArtifacts);
    
                // extensionArtifacts
                Set<Artifact> extensionArtifacts = new HashSet<>();
                List<Extension> extensions =
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
Back to top