26 lines
783 B
Groovy
26 lines
783 B
Groovy
plugins {
|
|
// see https://fabricmc.net/develop/ for new versions
|
|
id 'net.fabricmc.fabric-loom-remap' version '1.16-SNAPSHOT' apply false
|
|
// see https://projects.neoforged.net/neoforged/moddevgradle for new versions
|
|
id 'net.neoforged.moddev' version '2.0.140' apply false
|
|
// see // https://github.com/modmuss50/mod-publish-plugin for new versions
|
|
id "me.modmuss50.mod-publish-plugin" version "1.1.0" apply false
|
|
|
|
id 'com.diffplug.spotless' version '7.2.1'
|
|
id "checkstyle"
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: 'com.diffplug.spotless'
|
|
|
|
spotless {
|
|
format 'misc', {
|
|
target '*.gradle', '.gitattributes', '.gitignore'
|
|
|
|
trimTrailingWhitespace()
|
|
leadingTabsToSpaces()
|
|
endWithNewline()
|
|
}
|
|
}
|
|
}
|