added junit results

This commit is contained in:
Venkatesh 2022-09-27 11:48:57 +05:30
parent 6a91fd76e9
commit c134cb9dc4

View file

@ -5,4 +5,7 @@ node('JDK-11') {
stage('build') { stage('build') {
sh 'mvn package' sh 'mvn package'
} }
stage('junit') {
junit '**/target/surefire-reports/*.xml'
}
} }