Skip to content

Commit

Permalink
Add maven-javadoc-plugin (#54)
Browse files Browse the repository at this point in the history
To generate the Javadoc run:

```
mvn clean install site
```

The javadoc will be located in `target/site/apidocs`

To be published on the website.

Co-authored-by: Tellier Benoit <btellier@linagora.com>
  • Loading branch information
sideeffffect and chibenwa committed Sep 4, 2021
1 parent 0b43a1e commit d09771e
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions pom.xml
Expand Up @@ -219,4 +219,51 @@
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.0</version>
<reportSets>
<reportSet>
<id>aggregate</id>
<inherited>false</inherited>
<reports>
<report>aggregate</report>
</reports>
</reportSet>
<reportSet>
<id>default</id>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<linksource>true</linksource>
<maxmemory>1g</maxmemory>
<minmemory>256m</minmemory>
<source>${target.jdk}</source>
<tags>
<tag>
<name>note</name>
<placement>a</placement>
<head>NOTE</head>
</tag>
<tag>
<name>todo</name>
<placement>a</placement>
<head>TODO</head>
</tag>
<tag>
<name>warning</name>
<placement>a</placement>
<head>WARNING</head>
</tag>
</tags>
</configuration>
</plugin>
</plugins>
</reporting>
</project>

0 comments on commit d09771e

Please sign in to comment.