Skip to content

Commit

Permalink
Generate javadoc when deploying to Maven.
Browse files Browse the repository at this point in the history
  • Loading branch information
desruisseaux committed Dec 17, 2022
1 parent fb4beee commit d35d7ed
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,21 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<nonavbar>true</nonavbar> <!-- Navigation bar not used when Javadoc is browsed from IDE. -->
<doclint>-reference</doclint> <!-- Cross-modules references are valid only in aggregated javadoc. -->
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
Expand Down

0 comments on commit d35d7ed

Please sign in to comment.