BitSearch/Jenkinsfile

10 lines
175 B
Plaintext
Raw Permalink Normal View History

2021-12-01 14:46:48 +01:00
pipeline {
agent any
stages {
stage('Build test code') {
steps {
sh 'mvn clean install -DskipTests'
}
}
}
}