chore: Invoke -parameters on compile time

This commit is contained in:
Alexander Brandes 2022-08-29 17:18:54 +02:00
parent 295b8a0135
commit 76e761fcf3
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C

View File

@ -174,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"
}