1
0
mirror of https://github.com/LOOHP/Limbo.git synced 2026-06-08 05:51:43 +00:00
Files
LOOHP-Limbo/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'
}
}
}
}