BitSearch/Jenkinsfile

10 lines
175 B
Groovy

pipeline {
agent any
stages {
stage('Build test code') {
steps {
sh 'mvn clean install -DskipTests'
}
}
}
}