Adapt Jenkinsfile to multi-module architecture
zdm/undo-redo/pipeline/head This commit looks good Details

This commit is contained in:
Kai S. K. Engelbart 2021-12-11 17:58:09 +01:00
parent c411eace81
commit 4ef3c41251
Signed by: kske
GPG Key ID: 8BEB13EC5DF7EF13
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -17,7 +17,7 @@ pipeline {
}
post {
always {
junit 'target/surefire-reports/*.xml'
junit '*/target/surefire-reports/*.xml'
}
}
}
@ -34,7 +34,7 @@ pipeline {
}
post {
success {
archiveArtifacts artifacts: 'target/undo-redo-*.jar'
archiveArtifacts artifacts: '*/target/undo-redo-*.jar'
}
}
}