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

19 lines
316 B
Groovy

pipeline {
agent {
docker {
image 'maven:3-alpine'
args '-v /root/.m2:/root/.m2'
}
}
options {
skipStagesAfterUnstable()
}
stages {
stage('Build') {
steps {
sh 'mvn clean install'
}
}
}
}