mirror of
https://github.com/jlengrand/detekt.git
synced 2026-03-10 08:11:23 +00:00
14 lines
300 B
Kotlin
14 lines
300 B
Kotlin
plugins {
|
|
id("module")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.detektMetrics)
|
|
implementation(projects.detektApi)
|
|
implementation(projects.detektUtils)
|
|
|
|
testImplementation(testFixtures(projects.detektApi))
|
|
testImplementation(libs.mockk)
|
|
testImplementation(libs.assertj)
|
|
}
|