BitSearch/Jenkinsfile

10 lines
175 B
Plaintext
Raw Normal View History

2021-12-03 17:52:08 +01:00
pipeline {
agent any
stages {
stage('Build test code') {
steps {
sh 'mvn clean install -DskipTests'
}
}
}
}