forked from MithunTechnologiesDevOps/maven-web-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JenkinsfileMT
61 lines (49 loc) · 1.32 KB
/
JenkinsfileMT
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
node
{
properties([
buildDiscarder(logRotator(numToKeepStr: '3')),
pipelineTriggers([
pollSCM('* * * * *')
])
])
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}"
def mvnHome=tool name: "maven3.6.3"
stage('CheckoutCode')
{
git branch: 'development', credentialsId: '235e277e-7cf7-495e-b970-a22c2478d48c', url: 'https://github.com/MithunTechnologiesDevOps/maven-web-application.git'
}
stage('Build')
{
sh "${mvnHome}/bin/mvn clean package"
}
/*
stage('SonarQubeReport')
{
sh "${mvnHome}/bin/mvn sonar:sonar"
}
stage('UploadArtifactintoNexus')
{
sh "${mvnHome}/bin/mvn deploy"
}
stage('DeployToTomcat')
{
sshagent(['bac46180-c907-4a95-b8a9-417aff7d4f5c'])
{
sh "scp -o StrictHostKeyChecking=no target/maven-web-application.war [email protected]:/opt/apache-tomcat-9.0.30/webapps/maven-web-application.war"
}
}
stage('SendEmailNotification')
{
emailext body: '''Build is over,
Please check the logs,
Regards,
Mithun Technologies,
9980923226.''', subject: 'Build is Over', to: '[email protected],[email protected]'
}
*/
}