This commit is contained in:
mali 2022-10-20 17:00:53 +00:00
parent ef589debe0
commit 5e846c4c27

10
Jenkinsfile vendored
View File

@ -5,6 +5,16 @@ pipeline {
agent any
stages {
stage('Build') {
agent {
docker {
image "${MAVEN_IMAGE}"
}
}
steps {
sh 'mvn clean verify sonar:sonar'
}
}
stage('Static Code Analysis') {
agent {
docker {