forked from RAHAMSHAIK007/maven-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmithuntechnologiespipeline
55 lines (44 loc) · 1.23 KB
/
mithuntechnologiespipeline
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
node{
echo "GitHub BranhName ${env.BRANCH_NAME}"
echo "Jenkins Job Number ${env.BUILD_NUMBER}"
echo "Jenkins Node Name ${env.NODE_NAME}"
echo "Jenkins Home ${env.JENKINS_HOME}"
echo "Jenkins URL ${env.JENKINS_URL}"
echo "JOB Name ${env.JOB_NAME}"
properties([
buildDiscarder(logRotator(numToKeepStr: '2')),
pipelineTriggers([
pollSCM('* * * * *')
])
])
def mvnHome = tool name: 'maven3.6.1', type: 'maven'
stage('CheckoutCode'){
git branch: 'development', credentialsId: '2d363fa9-138b-41d8-ab89-0dd8706ecfb1', url: 'https://github.com/MithunTechnologiesDevOps/maven-web-application.git'
}
/*
stage('Build'){
sh "${mvnHome}/bin/mvn clean package"
}
stage('SonarQubeReport'){
sh "${mvnHome}/bin/mvn clean sonar:sonar"
}
stage('UploadArtifacts'){
sh "${mvnHome}/bin/mvn deploy"
}
stage('DeployAppintoTomcat')
{
sshagent(['9554f0b8-eda0-486d-9d23-ce7585c32f70'])
{
sh "scp -o StrictHostKeyChecking=no target/maven-web-application.war [email protected]:/opt/apache-tomcat-9.0.22/webapps/maven-web-application.war"
}
}
stage('EmailNotification')
{
emailext body: '''Build is over
Regards,
Mithun Software Solutions,
9980923226.
''', subject: 'Build is over', to: '[email protected]'
}
*/
}