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.0-a8
0.1.0-a8
Created 24 May 2019.
The uncompromising Kotlin code formatter
Using the plugins DSL:
plugins {
id("com.github.grihabor.blue") version "0.1.0-a8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.grihabor.blue:gradle_plugin:0.1.0-a8")
}
}
apply(plugin = "com.github.grihabor.blue")
Using the plugins DSL:
plugins {
id "com.github.grihabor.blue" version "0.1.0-a8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.grihabor.blue:gradle_plugin:0.1.0-a8"
}
}
apply plugin: "com.github.grihabor.blue"