We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ac0923 commit 373813dCopy full SHA for 373813d
1 file changed
build.gradle
@@ -55,6 +55,17 @@ task sourcesJar(type: Jar, dependsOn: classes) {
55
from sourceSets.main.allSource;
56
}
57
58
+/*
59
+ * Lint all the things!
60
+ */
61
+allprojects {
62
+ gradle.projectsEvaluated {
63
+ tasks.withType(JavaCompile) {
64
+ options.compilerArgs << "-Xlint:all"
65
+ }
66
67
+}
68
+
69
/*
70
* Javadoc: we need to tell where the overview.html is, it will not pick it up
71
* automatically...
0 commit comments