Search Gradle plugins

Version 0.9.0 (latest)

0.9.0

Created 21 February 2024.

Gradle Kotlin DSL ktlint convention plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gradle.kotlin-dsl.ktlint-convention") version "0.9.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gradle.kotlin:gradle-kotlin-dsl-conventions:0.9.0")
      }
    }
    
    apply(plugin = "org.gradle.kotlin-dsl.ktlint-convention")
  • Applying plugins to all subprojects .