Skip to content

Commit

Permalink
fix: sonar sources path
Browse files Browse the repository at this point in the history
  • Loading branch information
Ji-soo708 committed Dec 29, 2024
1 parent 25c929f commit c4b6a4f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,9 @@ sonar {
property("sonar.organization", "yapp-github")
property("sonar.host.url", "https://sonarcloud.io")
property("sonar.coverage.jacoco.xmlReportPaths", "build/reports/jacoco/index.xml")
property("sonar.sources", "src")
property("sonar.language", "kotlin")
property("sonar.sources", "src/main/kotlin")
property("sonar.sourceEncoding", "UTF-8")
property("sonar.exclusions", "**/test/**, **/resources/**, **/*Application*.kt, **/*Controller*.kt, **/*Config.kt'" +
", **/*Repository*.kt, **/*Dto*.kt, **/*Response*.kt, **/*Request*.kt, **/*Exception*.kt")
property("sonar.exclusions", "**/test/**, **/resources/**, **/*Application*.kt, **/*Controller*.kt, **/*Config.kt, **/*Repository*.kt, **/*Dto*.kt, **/*Response*.kt, **/*Request*.kt, **/*Exception*.kt")
property("sonar.test.inclusions", "**/*Test.kt")
property("sonar.kotlin.coveragePlugin", "jacoco")
}
Expand Down

0 comments on commit c4b6a4f

Please sign in to comment.