Update Jenkinsfile

This commit is contained in:
senatorovv 2023-07-12 12:11:31 +04:00 committed by GitHub
parent 7112183a14
commit d91d971efa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored
View file

@ -1,8 +1,14 @@
#!groovy
pipeline {
agent none stages {
stage('Maven Install') {
agent any
steps {
agent {
docker {
image 'maven:3.5.0'
}
}
steps {
sh 'mvn clean install'
}
}