diff --git a/Jenkinsfile b/Jenkinsfile index eeba6fef9..df01d0737 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,16 +21,5 @@ pipeline { sh './mvnw package' } } - stage('Send email') { - def mailRecipients = "firassawan@icloud.com" - def jobName = currentBuild.fullDisplayName - - emailext body: '''${SCRIPT, template="groovy-html.template"}''', - mimeType: 'text/html', - subject: "[Jenkins] ${jobName}", - to: "${mailRecipients}", - replyTo: "${mailRecipients}", - recipientProviders: [[$class: 'CulpritsRecipientProvider']] -} } }