Create Jenkinsfile

This commit is contained in:
Oleg-dp 2021-07-05 22:03:04 +03:00 committed by GitHub
parent e7c879ed3a
commit ffee1e6fe7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,13 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Running build automation'
sh './mvnw package'
sh 'java -jar target/*.jar'
}
}
}
}