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