Lets try this

This commit is contained in:
Telesphoreo 2022-04-07 00:25:03 -05:00
parent ff4f0a30c7
commit 0430a64ccf
1 changed files with 7 additions and 5 deletions

12
Jenkinsfile vendored
View File

@ -1,19 +1,21 @@
pipeline {
agent any
stages {
stage('build') {
stage("build") {
steps {
withGradle {
sh './gradlew build javadoc publish --no-daemon'
sh "./gradlew build javadoc publish --no-daemon"
}
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
javadoc javadocDir 'build/docs/javadoc'
javadoc keepAll false
archiveArtifacts artifacts: "build/libs/*.jar", fingerprint: true
javadoc {
javadocDir "build/docs/javadoc",
javadoc keepAll false
}
discordSend description: "Jenkins", link: env.BUILD_URL, result: currentBuild.currentResult, title: JOB_NAME, webhookURL: env.PLEX_WEBHOOK_URL
deleteWs()
}