it would help if there was better documentation

This commit is contained in:
Telesphoreo 2022-04-07 00:19:47 -05:00
parent 498aa8f2fd
commit ff4f0a30c7
1 changed files with 2 additions and 4 deletions

6
Jenkinsfile vendored
View File

@ -12,10 +12,8 @@ pipeline {
post { post {
always { always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
javadoc { javadoc javadocDir 'build/docs/javadoc'
javadocDir 'build/docs/javadoc' javadoc keepAll false
keepAll false
}
discordSend description: "Jenkins", link: env.BUILD_URL, result: currentBuild.currentResult, title: JOB_NAME, webhookURL: env.PLEX_WEBHOOK_URL discordSend description: "Jenkins", link: env.BUILD_URL, result: currentBuild.currentResult, title: JOB_NAME, webhookURL: env.PLEX_WEBHOOK_URL
deleteWs() deleteWs()
} }