diff --git a/Jenkinsfile b/Jenkinsfile index e33192f26..d2b6d7e47 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } } diff --git a/build.gradle b/build.gradle index 6b243cc39..37fe095b5 100644 --- a/build.gradle +++ b/build.gradle @@ -11,10 +11,6 @@ buildscript { } } -plugins { - id "org.sonarqube" version "2.7" -} - apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'org.springframework.boot'