oblak/cloud-minecraft/cloud-bukkit/build.gradle.kts
zml ed7b7569a8 build: switch to spotless (#355)
* build: switch to spotless

add in some other basic formatting steps that allow for easy
auto-correction

* build: lint text files as well

* chore: remove license headers from package-info files

spotless can't verify these
2022-06-18 22:52:58 -07:00

19 lines
428 B
Kotlin

plugins {
id("cloud.base-conventions")
}
dependencies {
api(projects.cloudCore)
api(projects.cloudBrigadier)
api(projects.cloudTasks)
compileOnly(libs.bukkit)
compileOnly(libs.commodore)
compileOnly(libs.jetbrainsAnnotations)
compileOnly(libs.guava)
}
spotless {
java {
targetExclude(file("src/main/java/cloud/commandframework/bukkit/internal/MinecraftArgumentTypes.java"))
}
}