Skip to content

Instantly share code, notes, and snippets.

@fejd
Created October 26, 2016 14:23
Show Gist options
  • Save fejd/ea70ab7bfd6e4da85268935119287ae0 to your computer and use it in GitHub Desktop.
Save fejd/ea70ab7bfd6e4da85268935119287ae0 to your computer and use it in GitHub Desktop.
Treat Java unchecked and deprecation warnings as errors
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment