forked from jleetutorial/maven-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile_withAnalysis
61 lines (52 loc) · 1.65 KB
/
Jenkinsfile_withAnalysis
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
58
59
60
61
pipeline {
agent any
parameters {
string(name: 'tomcat_stage', defaultValue: '/Users/gian/Development/servers/apache-tomcat-8.5.37', description: 'Staging Server')
string(name: 'tomcat_prod', defaultValue: '/Users/gian/Development/servers/apache-tomcat-8.5.37-prod', description: 'Production Server')
}
tools {
maven 'localMaven'
}
triggers {
// poll every minute
pollSCM('* * * * *')
}
stages{
stage('Build'){
steps {
sh 'mvn clean package'
}
post {
success {
echo 'Now Archiving...'
archiveArtifacts artifacts: '**/target/*.war'
}
}
}
stage('Analysis') {
steps {
sh 'mvn checkstyle:checkstyle'
}
post {
success {
checkstyle canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '**/checkstyle-result.xml', unHealthy: ''
}
}
}
stage ('Deployments'){
parallel{
stage ('Deploy to Staging'){
steps {
sh "cp **/target/*.war ${params.tomcat_stage}/webapps"
}
}
stage ("Deploy to Production"){
steps {
//sh "scp -i /home/jenkins/tomcat-demo.pem **/target/*.war ec2-user@${params.tomcat_prod}:/var/lib/tomcat7/webapps"
sh "cp **/target/*.war ${params.tomcat_prod}/webapps"
}
}
}
}
}
}