mirror of
https://github.com/jlengrand/detekt.git
synced 2026-03-10 08:11:23 +00:00
* Remove unused dependencies * Use more specific dependency where possible * Use more specific configuration where possible
13 lines
273 B
Kotlin
13 lines
273 B
Kotlin
plugins {
|
|
id("module")
|
|
alias(libs.plugins.binaryCompatibilityValidator)
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.detektApi)
|
|
api(projects.detektTestUtils)
|
|
implementation(projects.detektUtils)
|
|
compileOnly(libs.assertj)
|
|
implementation(projects.detektCore)
|
|
}
|