Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

        }
    
        protected Object getPluginExecutionKey(PluginExecution pluginExecution) {
            return pluginExecution;
        }
    
        protected Object getReportPluginKey(ReportPlugin reportPlugin) {
            return reportPlugin;
        }
    
        protected Object getReportSetKey(ReportSet reportSet) {
            return reportSet;
        }
    
        protected Object getLicenseKey(License license) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

         */
        @Deprecated
        public void flushReportPluginMap() {
        }
    
        /**
         * @return a Map of plugins field with <code>ReportPlugin#getKey()</code> as key
         * @see org.apache.maven.model.ReportPlugin#getKey()
         */
        public java.util.Map<String, ReportPlugin> getReportPluginsAsMap() {
            return getPlugins().stream().collect(Collectors.toMap(report -> report.getKey(), report -> report));
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
Back to top