My First Pipe Line

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

pipeline {

agent { docker { image 'maven:3.3.3' } }


stages {
stage('build') {
steps {
bat 'mvn --version'
}
}
}
}

You might also like