Files
detekt/detekt-report-html/build.gradle.kts
Brais Gabín 92433ea634 Enable ForbiddenMethodCall (#4334)
* Enable ForbiddenMethodCall on detekt code base

* Move Resources extensions from tooling to utils

* Forbid Url.openStream calls and Class.getResourceAsStream
2021-12-02 10:43:08 +01:00

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)
}