com.github.grihabor.blue
Owner: Gregory
The uncompromising Kotlin code formatter
https://gitlab.com/grihabor/blue/
Sources: https://gitlab.com/grihabor/blue
Version 0.1.2-a
0.1.2-a
Created 24 May 2019.
The uncompromising Kotlin code formatter
Using the plugins DSL:
plugins {
id("com.github.grihabor.blue") version "0.1.2-a"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.grihabor.blue:gradle_plugin:0.1.2-a")
}
}
apply(plugin = "com.github.grihabor.blue")
Using the plugins DSL:
plugins {
id "com.github.grihabor.blue" version "0.1.2-a"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.grihabor.blue:gradle_plugin:0.1.2-a"
}
}
apply plugin: "com.github.grihabor.blue"