Skip to content

Commit c4b6a4f

Browse files
committed
fix: sonar sources path
1 parent 25c929f commit c4b6a4f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,9 @@ sonar {
8888
property("sonar.organization", "yapp-github")
8989
property("sonar.host.url", "https://sonarcloud.io")
9090
property("sonar.coverage.jacoco.xmlReportPaths", "build/reports/jacoco/index.xml")
91-
property("sonar.sources", "src")
92-
property("sonar.language", "kotlin")
91+
property("sonar.sources", "src/main/kotlin")
9392
property("sonar.sourceEncoding", "UTF-8")
94-
property("sonar.exclusions", "**/test/**, **/resources/**, **/*Application*.kt, **/*Controller*.kt, **/*Config.kt'" +
95-
", **/*Repository*.kt, **/*Dto*.kt, **/*Response*.kt, **/*Request*.kt, **/*Exception*.kt")
93+
property("sonar.exclusions", "**/test/**, **/resources/**, **/*Application*.kt, **/*Controller*.kt, **/*Config.kt, **/*Repository*.kt, **/*Dto*.kt, **/*Response*.kt, **/*Request*.kt, **/*Exception*.kt")
9694
property("sonar.test.inclusions", "**/*Test.kt")
9795
property("sonar.kotlin.coveragePlugin", "jacoco")
9896
}

0 commit comments

Comments
 (0)