diff options
author | Dan Timoney <dtimoney@att.com> | 2020-09-03 08:56:01 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-09-03 08:56:04 -0400 |
commit | e816a5916736d263227f5a800561ead9ad81ce27 (patch) | |
tree | 56c942b219c85e52a7cad276efd3a0717e6e6e93 /springboot/spring-boot-setup/src | |
parent | 3716136cdf88bef2fc15b821f83e139f6bd2ce05 (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 'springboot/spring-boot-setup/src')
-rw-r--r-- | springboot/spring-boot-setup/src/main/resources/pom-template.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/springboot/spring-boot-setup/src/main/resources/pom-template.xml b/springboot/spring-boot-setup/src/main/resources/pom-template.xml index e92abbac..cfbf017b 100644 --- a/springboot/spring-boot-setup/src/main/resources/pom-template.xml +++ b/springboot/spring-boot-setup/src/main/resources/pom-template.xml @@ -436,7 +436,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>2.10.4</version> + <version>3.2.0</version> <configuration> <additionalDependencies> <additionalDependency> @@ -480,6 +480,7 @@ <version>\${commons.lang.version}</version> </additionalDependency> </additionalDependencies> + <failOnError>false</failOnError> </configuration> <executions> <execution> |