File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/kotlin/com/github/jvilya/sonar/android/lint Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ SonarQube plugin for supporting Android Lint
2020
2121### Settings
2222
23- To specify Android Lint report file you can use ` sonar.androidLint .reportPaths ` property. It's comma-delimited list of paths to AndroidLint reports.
23+ To specify Android Lint report file you can use ` sonar.android.lint .reportPaths ` property. It's comma-delimited list of paths to AndroidLint reports.
2424
2525For example, in the project configuration
2626
2727``` groovy
2828sonarqube {
2929 properties {
30- property "sonar.androidLint .reportPaths", "build/reports/lint-results.xml"
30+ property "sonar.android.lint .reportPaths", "build/reports/lint-results.xml"
3131 }
3232}
3333```
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ package com.github.jvilya.sonar.android.lint
33const val LANGUAGE_KEY = " android"
44const val LANGUAGE_NAME = " Android Lint"
55
6- const val REPORT_PROPERTY_KEY = " sonar.androidLint .reportPaths"
6+ const val REPORT_PROPERTY_KEY = " sonar.android.lint .reportPaths"
77
88const val REPOSITORY_KEY = " android-lint"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class AndroidLintPlugin : Plugin {
1414 AndroidLintRulesDefinition ::class .java,
1515 AndroidLintSensor ::class .java,
1616 AndroidLintLanguage ::class .java,
17- PropertyDefinition .builder(" sonar.androidLint .reportPaths" )
17+ PropertyDefinition .builder(" sonar.android.lint .reportPaths" )
1818 .name(" Android Lint Report Files" )
1919 .description(" Paths (absolute or relative) to xml files with Android Lint issues." )
2020 .onQualifiers(listOf (Qualifiers .PROJECT ))
You can’t perform that action at this time.
0 commit comments