Skip to content

Commit bfd7b2c

Browse files
authored
Create Jenkinsfile
1 parent 15e8161 commit bfd7b2c

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

Jenkinsfile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
pipeline {
2+
3+
agent any
4+
5+
stages {
6+
7+
stage("build"){
8+
9+
steps {
10+
sh 'mvn clean package'
11+
}
12+
}
13+
14+
stage("test"){
15+
16+
steps {
17+
echo 'testing application'
18+
}
19+
}
20+
21+
stage("deploy"){
22+
23+
steps{
24+
echo 'deploying application'
25+
}
26+
}
27+
28+
}
29+
30+
}

0 commit comments

Comments
 (0)