From 032c176eb2c68b333544c4466ee549da9564a4e7 Mon Sep 17 00:00:00 2001 From: Johannes Schnatterer Date: Tue, 31 Jul 2018 10:09:55 +0200 Subject: [PATCH] Jenkins: Adapts stage names to cloudogu best practices --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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')