io.github.detekt.gradle.compiler-plugin
Owner: Artur Bosch
Static code analysis for Kotlin as a compiler plugin.
Sources: https://github.com/detekt/detekt-compiler-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.detekt.gradle.compiler-plugin") version "1.23.3"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.3") } } apply(plugin = "io.github.detekt.gradle.compiler-plugin")
- Applying plugins to all subprojects .