all.shared.gradle.project-style-checker
Owner: Gonzalo Müller Bravo
A small set of tasks for checking file style for all files and for checking code style of Gradle's code
https://github.com/gmullerb/project-style-checker/
Sources: https://github.com/gmullerb/project-style-checker/
Version 0.0.2
0.0.2
Created 16 October 2018.
A small set of tasks for checking file style for all files and for checking code style of Gradle's code
Using the plugins DSL:
plugins {
id("all.shared.gradle.project-style-checker") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.all.shared.gradle.project-style-checker:project-style-checker:0.0.2")
}
}
apply(plugin = "all.shared.gradle.project-style-checker")
Using the plugins DSL:
plugins {
id "all.shared.gradle.project-style-checker" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.all.shared.gradle.project-style-checker:project-style-checker:0.0.2"
}
}
apply plugin: "all.shared.gradle.project-style-checker"