XRzwzr1ZKQ6cNQAF commented on issue #8422:
URL: https://github.com/apache/netbeans/issues/8422#issuecomment-2803056652

   POM Excerpt
   
   ```xml
   <build>
       <plugins>
           <!-- Default Compiler Arguments -->
           <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-compiler-plugin</artifactId>
               <configuration>
                   <debug>${enable-debug-info}</debug>
               </configuration>
           </plugin>
           <!-- Javadoc Options -->
           <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-javadoc-plugin</artifactId>
               <configuration>
                   <nohelp>true</nohelp>
                   <doctitle>Some Software (${project.version})</doctitle>
                   <windowtitle>Some Javadoc</windowtitle>
                   <show>protected</show>
                   <reportOutputDirectory>/opt/javadoc/</reportOutputDirectory>
                   <destDir>apidocs-${project.version}</destDir>
                   <groups>
                       <group>
                           content omitted by issue author
                       </group>
                   </groups>
                   <excludePackageNames>
                       content omitted by issue author
                   </excludePackageNames>
               </configuration>
               <executions>
                   <execution>
                       <id>aggregate</id>
                       <goals>
                           <goal>aggregate</goal>
                       </goals>
                   </execution>
               </executions>
           </plugin>
       </plugins>
   </build>
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to