kpgalligan
01/02/2020, 9:40 PMdetektPlugins
as a valid configurationArtur Bosch
01/03/2020, 9:32 PMval detektAll by tasks.registering(Detekt::class) {
description = "Runs over whole code base without the starting overhead for each module."
parallel = true
buildUponDefaultConfig = true
setSource(files(projectDir))
include("**/*.kt")
include("**/*.kts")
exclude("**/resources/**")
exclude("**/build/**")
...
pluginClasspath.setFrom("dependency")
}
pluginClasspath.setFrom(files("path/to/your/plugin")))