Repairing jenkinsfile

This commit is contained in:
work 2025-02-04 11:26:12 +01:00
parent 4c45124fd3
commit 4e03275c10

4
Jenkinsfile vendored
View file

@ -6,13 +6,13 @@ pipeline {
stages {
stage ('Build') {
steps {
sh './mvnw -B -DskipTests clean package
sh './mvnw -B -DskipTests clean package'
}
}
stage ('Test') {
steps {
sh './mvnw test
sh './mvnw test'
}
}