net.kyori.indra.checkstyle
Owner: kashike
Reasonable checkstyle configuration
https://github.com/KyoriPowered/indra/wiki
Sources: https://github.com/KyoriPowered/indra.git
Version 2.0.5
2.0.5
Created 28 May 2021.
Checkstyle configuration in line with the Indra file layout
Using the plugins DSL:
plugins {
id("net.kyori.indra.checkstyle") version "2.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.kyori:indra-common:2.0.5")
}
}
apply(plugin = "net.kyori.indra.checkstyle")
Using the plugins DSL:
plugins {
id "net.kyori.indra.checkstyle" version "2.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.kyori:indra-common:2.0.5"
}
}
apply plugin: "net.kyori.indra.checkstyle"