Fix build failure due to wrongly configured SonarQube

This commit is contained in:
Kirill Kamakin
2022-05-28 13:37:42 +02:00
parent 44812d2f84
commit f7034d8058
2 changed files with 10 additions and 10 deletions

View File

@@ -220,13 +220,4 @@ dependencies {
// https://github.com/square/leakcanary/releases
debugImplementation "com.squareup.leakcanary:leakcanary-android:2.9.1"
}
sonarqube {
properties {
property "sonar.projectKey", "kirmanak_Mealient"
property "sonar.organization", "kirmanak"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.androidLint.reportPaths", "build/reports/lint-results-debug.xml"
}
}

View File

@@ -40,4 +40,13 @@ plugins {
task clean(type: Delete) {
delete rootProject.buildDir
}
}
sonarqube {
properties {
property "sonar.projectKey", "kirmanak_Mealient"
property "sonar.organization", "kirmanak"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.androidLint.reportPaths", "build/reports/lint-results-debug.xml"
}
}