Jenkinsfile_SP2

This commit is contained in:
vishnu1411 2023-12-16 10:53:05 -05:00
parent ca5d9dede1
commit 8b606f85ae

5
Jenkinsfile vendored
View file

@ -7,8 +7,9 @@
//building using maven and install //building using maven and install
sh 'mvn clean package' sh 'mvn clean package'
} }
stage('Archive test results'){ stage('Install & Archive test results'){
//archive test reuslts //insteall & archive test reuslts
shh 'mvn clean install'
junit '**/surefire-reports/*xml' junit '**/surefire-reports/*xml'
archiveArtifacts artifacts: '**/*.war', followSymlinks: false archiveArtifacts artifacts: '**/*.war', followSymlinks: false
} }