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