added docker stage

This commit is contained in:
prasannakumar 2024-06-25 00:11:54 +05:30
parent 1fef4c921e
commit c9a56dc129

6
Jenkinsfile vendored
View file

@ -21,6 +21,9 @@ pipeline {
}
stage('SonarQube Analysis') {
when {
branch 'Release'
}
steps {
script {
// Run Maven with SonarQube plugin for analysis
@ -37,6 +40,9 @@ pipeline {
}
stage("Quality Gate") {
when {
branch 'Release'
}
steps {
timeout(time: 1, unit: 'HOURS') {
script {