From 0888cae8c9dead1121e7dd12167838841ac0a422 Mon Sep 17 00:00:00 2001 From: raoulvdberge Date: Sat, 12 Jun 2021 17:15:37 +0200 Subject: [PATCH] Remove Sonar as it doesn't work with J8 --- Jenkinsfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0c161fe52..23b8b26ca 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,9 +22,4 @@ node { stage('Publish artifacts') { sh "./gradlew publish" } - stage('SonarQube analysis') { - withCredentials([string(credentialsId: 'SONAR_TOKEN', variable: 'SONAR_TOKEN')]) { - sh "./gradlew sonarqube -Dsonar.login=$SONAR_TOKEN" - } - } }