Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 281 Bytes

Jenkinsfile.org

File metadata and controls

15 lines (15 loc) · 281 Bytes

pipeline { agent { docker { image ‘maven:3-alpine’ args ‘-v root.m2:/root/.m2’ } } stages { stage(‘Build’) { steps { sh ‘mvn -B -DskipTests clean package’ } } } }