Create Jenkinsfile

This commit is contained in:
ds161833 2020-04-05 17:23:51 -04:00 committed by GitHub
parent 56f09331aa
commit c467e22a16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,25 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'mvn clean'
}
}
stage('Test') {
steps {
sh 'mvn test'
}
}
stage('Package') {
steps {
sh 'mvn package'
}
}
stage('Deploy') {
steps {
sh 'mvn package'
}
}
}
}