* 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
19 lines
428 B
Kotlin
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"))
|
|
}
|
|
}
|