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