Create Jenkinsfile

This commit is contained in:
A-hash-bit 2022-07-26 11:51:53 +05:30 committed by GitHub
parent 2363f86560
commit 316ad5efe0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,15 @@
pipeline {
agent none
stages {
stage('Maven Install') {
agent {
docker {
image 'maven:3.5.0'
}
}
steps {
sh 'mvn clean install'
}
}
}
}