mirror of
https://github.com/LOOHP/Limbo.git
synced 2026-06-08 05:51:43 +00:00
11 lines
118 B
Groovy
11 lines
118 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('') {
|
|
steps {
|
|
build 'mvn clean install'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |