From 7cfcc48995b1a93490f264ef4c3da334a44020ec Mon Sep 17 00:00:00 2001 From: Johannes Schnatterer Date: Wed, 11 Jul 2018 18:09:06 +0200 Subject: [PATCH] Jenkins: Ignore JavaDoc errors for now. JDK8 is more strict, we should fix this before the next release. But not at the point where we're migrating our Jenkins. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 71c5f8c6ad..c5d1adf192 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,7 +26,7 @@ node() { // No specific label } stage('Build') { - mvn 'clean install -DskipTests -DperformRelease' + mvn 'clean install -DskipTests -DperformRelease -Dmaven.javadoc.failOnError=false' archive '**/target/*.jar,**/target/*.zip' }