LOOHP-Limbo/Jenkinsfile

11 lines
118 B
Groovy

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