mcswebapi/Jenkinsfile

10 lines
147 B
Plaintext
Raw Normal View History

2022-05-16 06:33:14 +00:00
pipeline {
agent any
stages {
stage('tests') {
steps {
sh 'mvn -B test'
}
}
}
}