Update Jenkinsfile

This commit is contained in:
Telesphoreo 2022-04-07 16:25:59 -05:00
parent aa0d9a0326
commit 077cbff22b
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -24,8 +24,8 @@ pipeline {
post {
always {
archiveArtifacts artifacts: "build/libs/*.jar", fingerprint: true
javadoc javadocDir: 'build/docs/javadoc', keepAll: false
discordSend description: '**Build:** ${BUILD_NUMBER}\n**Status:**: ${currentBuild.currentResult}', 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
javadoc javadocDir: "build/docs/javadoc", keepAll: false
discordSend description: "**Build:** ${env.BUILD_NUMBER}\n**Status:**: ${currentBuild.currentResult}", 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()
}
}