Cars4You/Jenkinsfile
2019-11-24 22:12:34 +01:00

11 lines
181 B
Groovy

pipeline {
agent { docker { image 'maven:3.3.3' } }
stages {
stage('build') {
steps {
sh 'mvn --version'
}
}
}
}