Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jmailen.kotlinter") version "1.3.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.jmailen.gradle:kotlinter-gradle:1.3.2")
      }
    }
    
    apply(plugin = "org.jmailen.kotlinter")
  • Applying plugins to all subprojects .