Skip to content

Commit

Permalink
Revert "Add sonar configuration"
Browse files Browse the repository at this point in the history
This reverts commit 506be62.
  • Loading branch information
Ugo Plouviez committed Jun 26, 2019
1 parent 506be62 commit 991b4d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
9 changes: 2 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,10 @@ pipeline {
agent any

stages {

stage('Test') {
steps {
withCredentials([
string(credentialsId: 'ADDRESS_SONAR', variable: 'address_sonar'),
string(credentialsId: 'SONAR_CORE_TOKEN', variable: 'core_token')]){
sh './gradlew clean test sonarqube -Dsonar.projectKey=iexec-core -Dsonar.host.url=$address_sonar -Dsonar.login=$core_token --refresh-dependencies --no-daemon'
}
junit 'build/test-results/**/*.xml'
sh './gradlew clean test --refresh-dependencies --no-daemon'
junit 'build/test-results/test/*.xml'
}
}

Expand Down
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ buildscript {
}
}

plugins {
id "org.sonarqube" version "2.7"
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
Expand Down

0 comments on commit 991b4d1

Please sign in to comment.