Update jenkinsfiles

This commit is contained in:
SandeshKutwade 2024-04-11 11:52:20 +05:30 committed by GitHub
parent f5cfad745a
commit cf6d59d803
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,6 +14,7 @@ pipeline {
stage('build'){ stage('build'){
steps { steps {
sh 'mvn clean package' sh 'mvn clean package'
mail bcc: '', body: 'Anything as now', cc: '', from: '', replyTo: '', subject: 'About Your Job', to: 'all@devops'
junit testResults: '**/surefire-reports/*.xml' junit testResults: '**/surefire-reports/*.xml'
archive '**/target/spring-petclinic-*.jar' archive '**/target/spring-petclinic-*.jar'
} }