Update Jenkinsfile

This commit is contained in:
Édouard Gagné 2020-04-13 21:15:56 -04:00 committed by GitHub
parent 420e1547f9
commit 89e11b156d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
Jenkinsfile vendored
View file

@ -4,7 +4,7 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
slackSend "Build Started - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)" slackSend (color: '#FFFF00', message: "STARTED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
sh './mvnw clean' sh './mvnw clean'
} }
} }