Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHansruedi Patzen2018-08-13 13:20:06 +0000
committerHansruedi Patzen2018-08-14 16:09:17 +0000
commitcb47ef4c6516a5167c0ce33ee4da36d7e1357871 (patch)
treee4da934172707c67559e0ba8dbe5514833ea4bc3 /pom.xml
parent1983d41afbe9129fb974f44de97eaf94be9d9741 (diff)
downloadorg.eclipse.cdt-cb47ef4c6516a5167c0ce33ee4da36d7e1357871.tar.gz
org.eclipse.cdt-cb47ef4c6516a5167c0ce33ee4da36d7e1357871.tar.xz
org.eclipse.cdt-cb47ef4c6516a5167c0ce33ee4da36d7e1357871.zip
Bug 537924: Unable to build javadoc maven target
Turns off doclint for Java 1.8 and greater because the javadocs are incomplete and won't build otherwise. Some files also had encoding issues with some characters which caused the javadoc build to fail, these characters have been replaced. Change-Id: I04690644bec6d7c3219cb0438cb3db6593fefd3a Signed-off-by: Hansruedi Patzen <hansruedi.patzen@hsr.ch>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index cb5f99772b5..10e8c721dbf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -268,6 +268,16 @@
</pluginRepository>
</pluginRepositories>
<profiles>
+ <!-- Turn off doclint because javadocs are incomplete -->
+ <profile>
+ <id>disable-java8-doclint</id>
+ <activation>
+ <jdk>[1.8,)</jdk>
+ </activation>
+ <properties>
+ <doclint>none</doclint>
+ </properties>
+ </profile>
<profile>
<id>cdtRepo</id>
<repositories>

Back to the top