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 1.0.7 (latest)
1.0.7
Created 04 September 2019.
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 "1.0.7"
}
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:1.0.7")
}
}
apply(plugin = "all.shared.gradle.project-style-checker")
Using the plugins DSL:
plugins {
id "all.shared.gradle.project-style-checker" version "1.0.7"
}
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:1.0.7"
}
}
apply plugin: "all.shared.gradle.project-style-checker"