Maven javadoc Plugin: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:


* [[Maven#Plugin|Maven]]
* [[Maven#Plugin|Maven]]
* [[javadoc]]


=Overview=
=Overview=
Line 26: Line 27:
   </executions>
   </executions>
</plugin>
</plugin>
</font>
</syntaxhighlight >


=Goals=
=Goals=

Latest revision as of 17:15, 11 October 2018

External

Internal

Overview

The plugin generates javadoc.

Example

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-javadoc-plugin</artifactId>
  <executions>
    <execution>
      <id>attach-javadocs</id>
      <goals>
        <goal>jar</goal>
      </goals>
    </execution>
  </executions>
</plugin>

Goals