From 66e73058e89b6ae7171598048ae16cca73f4f3a8 Mon Sep 17 00:00:00 2001 From: Firassawan <35850933+Firassawan@users.noreply.github.com> Date: Mon, 9 Mar 2020 16:38:38 -0400 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 11 ----------- 1 file changed, 11 deletions(-) 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']] -} } }