diff --git a/Jenkinsfile b/Jenkinsfile index c0c8af831..2519f657b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -41,14 +41,14 @@ node { } ) - stage('SonarQube Analysis') { + stage('Static Code Analysis') { def sonarQube = new SonarQube(this, [usernamePassword: credentialsId, sonarHostUrl: "${cesUrl}/sonar"]) sonarQube.analyzeWith(mvn) } - stage('Deploy Artifacts') { + stage('Deploy') { mvn.useDeploymentRepository([id: cesFqdn, url: "${cesUrl}/nexus", credentialsId: credentialsId, type: 'Nexus3']) mvn.deployToNexusRepository('-Dmaven.javadoc.failOnError=false')