mirror of
https://github.com/jlengrand/detekt.git
synced 2026-03-10 08:11:23 +00:00
* Enable ForbiddenMethodCall on detekt code base * Move Resources extensions from tooling to utils * Forbid Url.openStream calls and Class.getResourceAsStream
19 lines
540 B
Kotlin
19 lines
540 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.bundles.testImplementation)
|
|
testRuntimeOnly(libs.spek.runner)
|
|
}
|