Remove obnoxious javac warning for older source in classpath

This commit is contained in:
Connor Tumbleson 2017-07-09 10:19:13 -04:00
parent 380cb9b109
commit 597f2ec8a4
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75

View File

@ -53,6 +53,10 @@ allprojects {
ext.ibot = 'Connor Tumbleson'
ext.ibotEmail = 'connor.tumbleson@gmail.com'
}
tasks.withType(JavaCompile) {
options.compilerArgs += ["-Xlint:-options"]
}
compileJava.finalizedBy licenseFormatMain
licenseFormatMain.finalizedBy licenseFormatTest
}