Files
spring-data-commons/Jenkinsfile
2019-02-27 17:06:01 -06:00

14 lines
221 B
Groovy

pipeline {
agent {
docker {
image 'maven:3.3.3'
}
}
stages {
stage('build') {
steps {
sh 'mvn clean dependency:list test -Dsort -U'
}
}
}
}