pipeline {
agent {
docker {
image 'openjdk:11.0.5-slim'
args '-v $HOME/.m2:/root/.m2'
}
stages {
stage('Build') {
steps {
sh 'mvn -B clean install'