forked from gouthamchilakala/PetClinic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
57 lines (56 loc) · 1.84 KB
/
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
48
49
50
51
52
53
54
55
56
57
pipeline {
agent any
stages {
stage('compile') {
steps {
// step1
echo 'compiling..'
git url: 'https://github.com/lerndevops/PetClinic'
sh script: '/opt/maven/bin/mvn compile'
}
}
stage('codereview-pmd') {
steps {
// step2
echo 'codereview..'
sh script: '/opt/maven/bin/mvn -P metrics pmd:pmd'
}
post {
success {
recordIssues enabledForFailure: true, tool: pmdParser(pattern: '**/target/pmd.xml')
}
}
}
stage('unit-test') {
steps {
// step3
echo 'unittest..'
sh script: '/opt/maven/bin/mvn test'
}
post {
success {
junit 'target/surefire-reports/*.xml'
}
}
}
stage('codecoverage') {
steps {
// step4
echo 'codecoverage..'
sh script: '/opt/maven/bin/mvn cobertura:cobertura -Dcobertura.report.format=xml'
}
post {
success {
cobertura autoUpdateHealth: false, autoUpdateStability: false, coberturaReportFile: 'target/site/cobertura/coverage.xml', conditionalCoverageTargets: '70, 0, 0', failUnhealthy: false, failUnstable: false, lineCoverageTargets: '80, 0, 0', maxNumberOfBuilds: 0, methodCoverageTargets: '80, 0, 0', onlyStable: false, sourceEncoding: 'ASCII', zoomCoverageChart: false
}
}
}
stage('package/build-war') {
steps {
// step5
echo 'package......'
sh script: '/opt/maven/bin/mvn package'
}
}
}
}