microblog2/Jenkinsfile

11 lines
121 B
Groovy

pipeline {
agent any
stages {
stage('') {
steps {
withSonarQubeEnv 'Sonarqube'
}
}
}
}