Merge pull request #2 from khalilalturk/mybranch

the first request
This commit is contained in:
khalilalturk 2020-03-16 01:02:46 -04:00 committed by GitHub
commit 2f1a7a7806
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

19
Jenkinsfile vendored
View file

@ -12,10 +12,12 @@ pipeline {
sh 'mvn test'
}
}
stage('Package') {
steps {
sh 'mvn package'
}
}
@ -29,6 +31,19 @@ pipeline {
}
}
post{
success{
slackSend channel: 'soen345', message: 'Success', tokenCredentialId: '178d0505-1fe0-4dee-aaa9-097c8a75a121'
}
failure{
slackSend channel: 'soen345', message: 'Failed', tokenCredentialId: '178d0505-1fe0-4dee-aaa9-097c8a75a121'
}
}
}
}