Skip to content

Commit

Permalink
Make compiler more strict: -Xlint:all
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaldvogel committed Dec 29, 2024
1 parent 17ceebd commit d884a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ repositories {

tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.compilerArgs.addAll(['-Werror'])
options.compilerArgs.addAll(['-Xlint:all', '-Werror'])
}

test {
Expand Down

0 comments on commit d884a1a

Please sign in to comment.