diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy index 9bf3d0f..997d8a1 100644 --- a/Jenkinsfile.groovy +++ b/Jenkinsfile.groovy @@ -43,22 +43,6 @@ pipeline { archiveArtifacts '**/target/*.jar' } } - stage('Javadoc') { - steps { - withMaven(maven: 'maven 3.5.2', jdk: 'JDK 9') { - sh "${mvn} -P release javadoc:javadoc" - } - publishHTML([ - allowMissing: false, - alwaysLinkToLastBuild: false, - keepAll: false, - reportDir: 'target/site/apidocs/', - reportFiles: 'index.html', - reportName: 'Javadocs', - reportTitles: '' - ]) - } - } stage('Quality') { steps { jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'