Update Jenkinsfile

This commit is contained in:
A-hash-bit 2022-07-27 15:22:04 +05:30 committed by GitHub
parent d070b0d9ff
commit f6b452ac52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
Jenkinsfile vendored
View file

@ -1,13 +1,11 @@
pipeline {
agent none
agent any
tools{
maven "maven3"
}
stages {
stage('Maven Install') {
agent {
docker {
image 'maven:3.5.0'
}
}
steps {
steps {
sh 'mvn clean install'
}
}