codevalet-plugin/Jenkinsfile

12 lines
188 B
Groovy

pipeline {
agent { docker 'maven:3-alpine' }
stages {
stage('Build') {
steps {
sh 'mvn -e -B -U clean package'
}
}
}
}