Update Jenkinsfile

This commit is contained in:
khalilalturk 2020-03-15 17:02:23 -04:00 committed by GitHub
parent 15b30aef1c
commit a63031ed82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
Jenkinsfile vendored
View file

@ -23,18 +23,11 @@ pipeline {
branch 'master' branch 'master'
} }
steps { steps {
sh 'mvn deploy'} sh 'mvn deploy'
}
} }
} }
stage('Slack Notification') {
steps {
slackSend baseUrl: 'https://hooks.slack.com/services/',
channel: '#jenkins',
message: 'Build Status',
tokenCredentialId: 'slack',
teamDomain: 'soen345'
}
} }
}
}