Files
LimboService/Jenkinsfile
T
2020-08-09 00:30:57 +08:00

11 lines
118 B
Groovy

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