-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathJenkinsfile
53 lines (36 loc) · 939 Bytes
/
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
pipeline {
agent any
// tools {
// Install the Maven version configured as "M3" and add it to the path. Demo comment
// maven "maven"
// jdk "java"
// }
stages {
stage(' Code Checkout') {
steps {
// Get some code from a GitHub repository
git 'https://github.com/sidvijay18/tomcat_pipeline.git'
}
}
stage('Code Modify') {
steps {
sh 'mvn compile'
}
}
stage('Code Testing') {
steps {
sh 'mvn test'
}
}
stage('Code Made') {
steps {
sh 'mvn package'
}
}
stage(' Code Deploy') {
steps {
sh 'cp -rf target/test-1.0.war /opt/apache-tomcat-9.0.80/webapps'
}
}
}
}