Merge branch 'v6' into v7

This commit is contained in:
Alexander Brandes
2023-01-08 10:20:15 +01:00
80 changed files with 1002 additions and 1103 deletions

View File

@ -18,7 +18,6 @@ plugins {
idea
}
group = "com.intellectualsites.plotsquared"
version = "7.0.0-SNAPSHOT"
@ -66,12 +65,12 @@ subprojects {
}
dependencies {
implementation(platform("com.intellectualsites.bom:bom-newest:1.5"))
implementation(platform("com.intellectualsites.bom:bom-newest:1.21"))
}
dependencies {
// Tests
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
testImplementation("org.junit.jupiter:junit-jupiter:5.9.1")
}
plugins.withId("java") {
@ -175,10 +174,7 @@ subprojects {
tasks {
compileJava {
options.compilerArgs.addAll(arrayOf("-Xmaxerrs", "1000"))
options.compilerArgs.add("-Xlint:all")
for (disabledLint in arrayOf("processing", "path", "fallthrough", "serial"))
options.compilerArgs.add("-Xlint:$disabledLint")
options.compilerArgs.add("-parameters")
options.isDeprecation = true
options.encoding = "UTF-8"
}