Search Gradle plugins

Version 0.3.3

Created 13 September 2020.

Static code analysis for Kotlin as a compiler plugin.

Using the plugins DSL:

plugins {
  id("io.github.detekt.gradle.compiler-plugin") version "0.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.detekt:detekt-compiler-plugin:0.3.3")
  }
}

apply(plugin = "io.github.detekt.gradle.compiler-plugin")

Using the plugins DSL:

plugins {
  id "io.github.detekt.gradle.compiler-plugin" version "0.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.detekt:detekt-compiler-plugin:0.3.3"
  }
}

apply plugin: "io.github.detekt.gradle.compiler-plugin"

Learn how to apply plugins to subprojects