Javadoc Plugin added, site description modified, link to javadoc documentation added in sidebar
Showing
... | ... | @@ -179,6 +179,18 @@ |
</reportSet> | ||
</reportSets> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.1.1</version> | ||
<configuration> | ||
<!-- The following path is related to javadoc's place my computer --> | ||
<javadocExecutable>/usr/bin/javadoc</javadocExecutable> <!-- Added to avoid error in BUILD of the mvn site command, related to JAVA_HOME error --> | ||
|
||
<source>8</source> <!-- Added to avoid error in BUILD of the mvn site command, related to modules --> | ||
|
||
<show>public</show> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
... | ... |