summaryrefslogtreecommitdiffstats
path: root/odlparent/karaf4-parent
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2020-09-03 08:56:01 -0400
committerDan Timoney <dtimoney@att.com>2020-09-03 08:56:04 -0400
commite816a5916736d263227f5a800561ead9ad81ce27 (patch)
tree56c942b219c85e52a7cad276efd3a0717e6e6e93 /odlparent/karaf4-parent
parent3716136cdf88bef2fc15b821f83e139f6bd2ce05 (diff)
Address javadoc build issues
maven-javadoc-plugin started to fail when using java 11 compiler. Some issues are addressed in latest version of plugin (3.2.0), but it appears some issues remain. To address this, we use the latest plugin version and configure maven to continue if javadoc errors occur. Note: this issue is currently causing verify builds to fail - thus, this is a blocking issue. Change-Id: I0a9882b4b93ea18b29e2d53d269cf70dda77a4d1 Issue-ID: CCSDK-2728 Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'odlparent/karaf4-parent')
-rw-r--r--odlparent/karaf4-parent/pom.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/odlparent/karaf4-parent/pom.xml b/odlparent/karaf4-parent/pom.xml
index 0bcb5c2e..1c7305c1 100644
--- a/odlparent/karaf4-parent/pom.xml
+++ b/odlparent/karaf4-parent/pom.xml
@@ -564,6 +564,14 @@
<version>7.1.1</version>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>3.2.0</version>
+ <configuration>
+ <failOnError>false</failOnError>
+ </configuration>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>