mirror of
https://github.com/jlengrand/detekt.git
synced 2026-03-10 08:11:23 +00:00
18 lines
483 B
Kotlin
18 lines
483 B
Kotlin
plugins {
|
|
id("module")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(projects.detektApi)
|
|
compileOnly(projects.detektMetrics)
|
|
implementation(projects.detektUtils)
|
|
implementation(libs.kotlinx.html) {
|
|
exclude(group = "org.jetbrains.kotlin")
|
|
}
|
|
testImplementation(projects.detektMetrics)
|
|
testImplementation(projects.detektTestUtils)
|
|
testImplementation(testFixtures(projects.detektApi))
|
|
testImplementation(libs.mockk)
|
|
testImplementation(libs.assertj)
|
|
}
|