ZenProject/Jenkinsfile

13 lines
196 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
// This runs the Maven test phase
sh 'mvn test'
}
}
}
}