Search Gradle plugins

Version 0.15.0

0.15.0

Created 31 October 2023.

A Gradle plugin to run ktfmt formatter on your build

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.ncorti.ktfmt.gradle") version "0.15.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.ncorti.ktfmt.gradle:plugin:0.15.0")
      }
    }
    
    apply(plugin = "com.ncorti.ktfmt.gradle")
  • Applying plugins to all subprojects .