From 85c461846c68fcf6b3f9d0717a7f11deb4cf6b07 Mon Sep 17 00:00:00 2001 From: n Date: Tue, 7 Mar 2023 15:27:45 +0530 Subject: [PATCH] Added the name change in pipeline --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 740394ccb..92c759474 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,8 +15,8 @@ pipeline { } stage( 'post build' ) { steps { - archiveArtifacts artifacts: '**/spring-petclinic-3.0.0.jar' - onlyIfSuccesful: 'true' + archiveArtifacts artifacts: '**/spring-petclinic-3.0.0.jar', + onlyIfSuccesful: 'true', junit testResults: '**/test-results/test/TEST-*.xml' } }