org.gradle.kotlin-dsl.ktlint-convention
Owner: Gradle
Gradle Kotlin DSL ktlint convention plugin
https://github.com/gradle/kotlin-dsl-conventions
Sources: https://github.com/gradle/kotlin-dsl-conventions
Version 0.2.0-SNAPSHOT
0.2.0-SNAPSHOT
Created 12 December 2018.
Gradle Kotlin DSL ktlint convention plugin
Using the plugins DSL:
plugins {
id("org.gradle.kotlin-dsl.ktlint-convention") version "0.2.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.gradle.kotlin:gradle-kotlin-dsl-conventions:0.2.0-SNAPSHOT")
}
}
apply(plugin = "org.gradle.kotlin-dsl.ktlint-convention")
Using the plugins DSL:
plugins {
id "org.gradle.kotlin-dsl.ktlint-convention" version "0.2.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.gradle.kotlin:gradle-kotlin-dsl-conventions:0.2.0-SNAPSHOT"
}
}
apply plugin: "org.gradle.kotlin-dsl.ktlint-convention"