-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
47 lines (41 loc) · 835 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
pipeline {
agent any
options { buildDiscarder(logRotator(numToKeepStr: '10')) }
tools {
maven 'maven-3'
jdk 'jdk-8'
}
stages {
stage ('Initialize') {
steps {
sh '''
echo "PATH = ${PATH}"
echo "M2_HOME = ${M2_HOME}"
echo "JAVA_HOME = ${JAVA_HOME}"
git clean -dfx
'''
}
}
stage('build') {
steps {
sh 'mvn clean deploy -U --batch-mode'
}
}
}
post {
success {
junit allowEmptyResults: true, testResults:'target/surefire-reports/**/*.xml'
}
failure {
emailext (
subject: "Jenkins Build failed: ${env.JOB_NAME} [${env.BUILD_NUMBER}]",
// mimeType: 'text/html',
body: """
FAILED: ${env.JOB_NAME} [${env.BUILD_NUMBER}]:
${env.BUILD_URL}
""",
recipientProviders: [[$class: 'DevelopersRecipientProvider']]
)
}
}
}