Skip to content

Commit

Permalink
Fixing jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
rodriguez-jorge committed Dec 3, 2024
1 parent d3a2623 commit 8929460
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,15 @@
steps {
script {
CURRENT_STAGE = env.STAGE_NAME
buildWithMaven("clean install ${pipelineParams.skipTestsArgs} ${pipelineParams.mavenAdditionalArgs}")
buildWithMaven("clean install ${pipelineParams.skipTestsArgs} ${pipelineParams.mavenAdditionalArgs} -pl '!:mmp-sonar'")
}
}
}
stage('MMP Sonar') {
steps {
script {
CURRENT_STAGE = env.STAGE_NAME
buildWithMaven("clean install ${pipelineParams.skipTestsArgs} ${pipelineParams.mavenAdditionalArgs} -pl ':mmp-sonar'")
}
}
}
Expand Down Expand Up @@ -71,4 +79,4 @@
notifyBuildToSlack(CURRENT_STAGE)
}
}
}
}

0 comments on commit 8929460

Please sign in to comment.