Update Jenkinsfile

This commit is contained in:
Telesphoreo 2022-04-07 16:16:21 -05:00
parent 53c888aed1
commit 603309c79d
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -25,7 +25,7 @@ pipeline {
always {
archiveArtifacts artifacts: "build/libs/*.jar", fingerprint: true
javadoc javadocDir: 'build/docs/javadoc', keepAll: false
discordSend description: "Jenkins", link: env.BUILD_URL, result: currentBuild.currentResult, title: JOB_NAME, webhookURL: env.PLEX_WEBHOOK_URL
discordSend description: 'Build: env.BUILD_NUMBER', enableArtifactsList: true, footer: 'Built with Jenkins', link: 'env.BUILD_URL', result: currentBuild.currentResult, scmWebUrl: 'https://github.com/plexusorg/Plex', showChangeset: true, title: 'env.JOB_NAME', webhookURL: env.PLEX_WEBHOOK_URL
cleanWs()
}
}