Your Site Title

Java lint

javac javac -Xlint:unchecked

Ant <javac …>

</javac>

Maven in maven-compiler-plugin

-Xlint:unchecked

Gradle gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs « “-Xlint:unchecked” } }

tasks.withType(JavaCompile) { options.compilerArgs « “-Xlint:unchecked” « “-Xlint:deprecation” }

compileJava { options.compilerArgs « “-Xlint:unchecked” « “-Xlint:deprecation” }

Reference

How do I compile with -Xlint:unchecked?