Update Jenkinsfile with all the declarative stages

This commit is contained in:
Pam 2020-04-15 21:39:44 -04:00 committed by GitHub
parent a6b6d7cc0d
commit 7104fb9dd5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
Jenkinsfile vendored
View file

@ -6,5 +6,20 @@ pipeline {
sh './mvnw package'
}
}
stage('Test') {
steps {
echo 'Test'
}
}
stage('Package') {
steps {
echo 'package'
}
}
stage('Deploy') {
steps {
echo 'deploy'
}
}
}
}