Fix site generation

cherry picked: 8b8bb6d504
This commit is contained in:
Andreas Dangel
2016-05-29 21:07:53 +02:00
parent 1fc6e7afa2
commit f87dcb16cc

14
pom.xml
View File

@@ -588,6 +588,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc.plugin.version}</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<reportSets>
<reportSet>
<reports>
@@ -976,6 +979,17 @@
</plugins>
</build>
</profile>
<profile>
<id>site</id>
<!--
In order to build the site and build the aggregate javadoc report
javadoc needs to use java8 in order to be able to parse the java8 modules (apex, ui, ...)
-->
<properties>
<java.version>1.8</java.version>
</properties>
</profile>
</profiles>
<modules>