fix: adding Jenkinsfile
Zenful/ZenProject/pipeline/head There was a failure building this commit

This commit is contained in:
2024-09-28 17:13:43 -04:00
parent 72f873c8d8
commit df67108c10
5 changed files with 63 additions and 40 deletions
Vendored
+13
View File
@@ -0,0 +1,13 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
// This runs the Maven test phase
sh 'mvn test'
}
}
}
}