mbien commented on code in PR #8265: URL: https://github.com/apache/netbeans/pull/8265#discussion_r1992295691
########## java/maven/src/org/netbeans/modules/maven/output/DefaultOutputProcessorFactory.java: ########## @@ -32,24 +31,28 @@ @ServiceProvider(service=OutputProcessorFactory.class) public class DefaultOutputProcessorFactory implements ContextOutputProcessorFactory { - @Override public Set<OutputProcessor> createProcessorsSet(Project project) { - Set<OutputProcessor> toReturn = new HashSet<>(); + @Override + public Set<OutputProcessor> createProcessorsSet(Project project) { if (project != null) { - toReturn.add(new JavadocOutputProcessor()); - toReturn.add(new TestOutputListenerProvider()); - toReturn.add(new SiteOutputProcessor(project)); NbMavenProjectImpl nbprj = project.getLookup().lookup(NbMavenProjectImpl.class); - toReturn.add(new JavaStacktraceOutputProcessor(nbprj)); - toReturn.add(new DependencyAnalyzeOutputProcessor(nbprj)); + return Set.of( +// new JavadocOutputProcessor(), // TODO update processor Review Comment: the old maven javadoc plugin must have printed the path to the javadoc index file at some point. This did make a hyperlink out of it. Since this doesn't happen anymore, the processor serves no purpose atm as far as I can tell. So I thought I turn it off and mark it in case someone has an idea how to add that functionality again. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org For additional commands, e-mail: notifications-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists