ZenProject/Jenkinsfile
Sami 9e4277a032
All checks were successful
jenkins/ZenProject/pipeline/head This commit looks good
fix: 11 - Updating Jenkinsfile
2024-09-29 16:29:56 -04:00

13 lines
196 B
Groovy

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