LOOHP-Limbo/Jenkinsfile

19 lines
316 B
Groovy

pipeline {
agent {
docker {
image 'maven:3-alpine'
args '-v /root/.m2:/root/.m2'
}
}
options {
skipStagesAfterUnstable()
}
stages {
stage('Build') {
steps {
sh 'mvn clean install'
}
}
}
}