11 lines
151 B
Plaintext

pipeline {
agent any
stages {
stage('Build') {
steps {
mvn 'clean install'
}
}
}
}