Files
detekt/detekt-core/build.gradle.kts
Vitaly V. Pinchuk 5d49409814 Add Markdown report (#4858)
Co-authored-by: Brais Gabín <braisgabin@gmail.com>
2022-06-14 06:06:05 +01:00

26 lines
785 B
Kotlin

plugins {
id("module")
}
dependencies {
api(projects.detektApi)
api(projects.detektParser)
api(projects.detektTooling)
implementation(libs.snakeyaml)
implementation(projects.detektMetrics)
implementation(projects.detektPsiUtils)
implementation(projects.detektReportHtml)
implementation(projects.detektReportMd)
implementation(projects.detektReportTxt)
implementation(projects.detektReportXml)
implementation(projects.detektReportSarif)
implementation(projects.detektUtils)
testRuntimeOnly(projects.detektRules)
testImplementation(projects.detektTest)
testImplementation(testFixtures(projects.detektApi))
testImplementation(libs.mockk)
testImplementation(libs.reflections)
testImplementation(libs.assertj)
}