Browse Source

removed unused profile and enabled emailing

Kenneth Lausdahl 7 years ago
parent
commit
bcf2b72d92
1 changed files with 6 additions and 6 deletions
  1. 6 6
      Jenkinsfile

+ 6 - 6
Jenkinsfile

@@ -10,7 +10,7 @@ node {
       withMaven(mavenLocalRepo: '.repository', mavenSettingsFilePath: "${env.MVN_SETTINGS_PATH}") {
 
         // Run the maven build
-        sh "mvn clean -PWith-IDE -Dtycho.mode=maven -fn -f DSL_SemanticAdaptation/pom.xml"
+        sh "mvn clean -Dtycho.mode=maven -fn -f DSL_SemanticAdaptation/pom.xml"
       }}
 
     stage ('Package install'){
@@ -34,11 +34,11 @@ node {
 
 
       // Notify on build failure using the Email-ext plugin
-      //      emailext(body: '${DEFAULT_CONTENT}', mimeType: 'text/html',
-      //               replyTo: '$DEFAULT_REPLYTO', subject: '${DEFAULT_SUBJECT}',
-      //               to: emailextrecipients([[$class: 'CulpritsRecipientProvider'],
-      //                                       [$class: 'RequesterRecipientProvider']]))
-      //    }}
+            emailext(body: '${DEFAULT_CONTENT}', mimeType: 'text/html',
+                     replyTo: '$DEFAULT_REPLYTO', subject: '${DEFAULT_SUBJECT}',
+                     to: emailextrecipients([[$class: 'CulpritsRecipientProvider'],
+                                             [$class: 'RequesterRecipientProvider']]))
+          }}
     }
   }
 }