mcswebapi/Jenkinsfile

10 lines
147 B
Groovy

pipeline {
agent any
stages {
stage('tests') {
steps {
sh 'mvn -B test'
}
}
}
}