Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ build-config:
checkstyle:
./gradlew checkstyleMain

sonarqube:
./gradlew JacocoTestReport
./gradlew sonarqube

test:
./gradlew test

Expand Down
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ buildscript {
}
classpath 'com.android.tools.build:gradle:3.3.0'
classpath pluginDependencies.errorprone
classpath pluginDependencies.sonarqube
classpath pluginDependencies.buildConfig
classpath pluginDependencies.jacoco
}
Expand Down Expand Up @@ -101,4 +100,3 @@ task clean(type: Delete) {
delete rootProject.buildDir
}

apply from: "${rootDir}/gradle/sonarqube.gradle"
6 changes: 0 additions & 6 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ jobs:
- run:
name: Run unit-test for all modules
command: make test
- run:
name: SonarQube upload
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
make sonarqube ;
fi
- store_artifacts:
path: mapbox/app/build/reports
destination: reports
Expand Down
38 changes: 0 additions & 38 deletions docs/sonarqube.md

This file was deleted.

2 changes: 0 additions & 2 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ ext {
jacoco : '0.13.0',
errorprone : '0.0.14',
spotbugs : '1.3',
sonarqube : '2.5',
buildConfig: '1.1.8',
dependencyGraph: '0.4.0'

Expand All @@ -43,7 +42,6 @@ ext {
pluginDependencies = [
checkstyle : "com.puppycrawl.tools:checkstyle:${pluginVersion.checkstyle}",
spotbugs : "gradle.plugin.com.github.spotbugs:gradlePlugin:${pluginVersion.spotbugs}",
sonarqube : "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:${pluginVersion.sonarqube}",
errorprone : "net.ltgt.gradle:gradle-errorprone-plugin:${pluginVersion.errorprone}",
buildConfig: "gradle.plugin.de.fuerstenau:BuildConfigPlugin:${pluginVersion.buildConfig}",
dependencyGraph: "com.vanniktech:gradle-dependency-graph-generator-plugin:${pluginVersion.dependencyGraph}",
Expand Down
27 changes: 0 additions & 27 deletions gradle/sonarqube.gradle

This file was deleted.

3 changes: 0 additions & 3 deletions samples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,3 @@ buildConfig {
buildConfigField 'String', 'MAPBOX_ACCESS_TOKEN', System.getenv("MAPBOX_ACCESS_TOKEN")
}

sonarqube {
skipProject = true
}