Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Commit cdca6db

Browse files
Update Jenkinsfile
1 parent bd169fa commit cdca6db

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

Jenkinsfile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ pipeline {
1515
}
1616

1717
stage('Prepare') {
18-
18+
steps {
19+
echo 'Preparing..'
20+
}
1921
}
2022

2123
stage ('Build') {
22-
echo 'Building..'
2324
steps {
25+
echo 'Building..'
2426
sh 'mvn clean package'
2527
}
2628
post {
@@ -30,15 +32,17 @@ pipeline {
3032
}
3133
}
3234

33-
stage('Test') {
34-
echo 'Testing..'
35+
stage('Test') {
3536
steps {
37+
echo 'Testing..'
3638
sh 'mvn test'
3739
}
3840
}
3941

4042
stage ('Deploy') {
41-
echo 'Deploying..'
43+
steps {
44+
echo 'Deploying..'
45+
}
4246

4347
}
4448

0 commit comments

Comments
 (0)