org.jlleitschuh.gradle.ktlint
Owner: Jonathan Leitschuh
Provides a convenient wrapper plugin over the ktlint project.
https://github.com/JLLeitschuh/ktlint-gradle
Sources: https://github.com/JLLeitschuh/ktlint-gradle
Version 2.0.1
2.0.1
Created 01 June 2017.
Provides a convenient wrapper plugin over the ktlint project.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jlleitschuh.gradle.ktlint") version "2.0.1"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.org.jlleitschuh.gradle:ktlint-gradle:2.0.1") } } apply(plugin = "org.jlleitschuh.gradle.ktlint")
- Applying plugins to all subprojects .