Add aggregate javadocs to build

This commit is contained in:
Dave Syer
2016-10-24 16:26:39 +01:00
parent c5b7e87077
commit 6250a68f52

17
pom.xml
View File

@@ -26,6 +26,23 @@
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate-jar</goal>
</goals>
<phase>package</phase>
<inherited>false</inherited>
<configuration>
<aggregate>true</aggregate>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>