Create Jenkinsfile

This commit is contained in:
senatorovv 2023-07-12 10:24:57 +04:00 committed by GitHub
parent 1e0b3ec0a6
commit 0a3a3ee79a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
Jenkinsfile vendored Normal file
View file

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