Enable Java deprecation warnings details

Without the option, gradle reports a lint issue, but without any
details.
pull/1805/merge
Romain Vimont 4 years ago
parent 2edf192e3a
commit 83082406d3

@ -19,6 +19,9 @@ allprojects {
google()
jcenter()
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation"
}
}
task clean(type: Delete) {

Loading…
Cancel
Save