Trying to add -Xlint:unchecked

This commit is contained in:
Bruce Eckel 2016-10-25 10:19:31 -07:00
parent e472e322b2
commit dcdacb1c3f

View File

@ -129,6 +129,10 @@ ext {
junitJupiterVersion = '5.0.0-M2'
}
compileJava {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
subprojects {
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'me.champeau.gradle.jmh'