site generation - use java8 in order to be able to generate javadoc

for the modules which use java8
This commit is contained in:
Andreas Dangel
2016-04-11 21:05:11 +02:00
parent e215d372ef
commit c655dc72fd

14
pom.xml
View File

@ -601,6 +601,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>
@ -990,6 +993,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>