-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJenkinsfile
36 lines (36 loc) · 1.06 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
pipeline {
agent any
environment {
DEPLOY_SERVER = '[email protected]'
SONARQUBE_SERVER = 'sonarqube' // This should match the name configured in Jenkins
}
stages {
stage('Checkout') {
steps {
git branch: 'master', url: 'https://github.com/gvjkumar2004/springbootwebapp1.git'
}
}
stage('Build') {
steps {
sh 'mvn clean package'
}
}
stage('SonarQube Analysis') {
steps {
withSonarQubeEnv("${SONARQUBE_SERVER}") {
sh 'mvn sonar:sonar'
}
}
}
stage('Deploy') {
steps {
sshagent(['ssh-cred']) {
sh '''
scp -o StrictHostKeyChecking=no target/*.jar ${DEPLOY_SERVER}:/home/ubuntu/
ssh -o StrictHostKeyChecking=no ${DEPLOY_SERVER} "nohup java -jar /home/ubuntu/*.jar > /dev/null 2>&1 &"
'''
}
}
}
}
}