mirror of
https://github.com/jlengrand/detekt.git
synced 2026-03-10 08:11:23 +00:00
26 lines
785 B
Kotlin
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)
|
|
}
|