Add javadoc aggregator

This commit is contained in:
Dave Syer
2017-07-17 14:39:50 +01:00
parent aa87764580
commit 0d51e87f10

16
pom.xml
View File

@@ -77,6 +77,22 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
<excludePackageNames>com.example,functions,example</excludePackageNames>
</configuration>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate-jar</goal>
</goals>
<phase>install</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>