We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e81d10 commit b151cb0Copy full SHA for b151cb0
1 file changed
build.gradle
@@ -32,14 +32,13 @@ subprojects {
32
}
33
34
35
- }
36
-
37
- tasks.withType(JavaCompile).configureEach {
38
- it.options.compilerArgs += [
39
- "-Xlint:all"
40
- ]
41
- if (rootProject.hasProperty('failOnWarnings') && rootProject.failOnWarnings.toBoolean()) {
42
- it.options.compilerArgs += ["-Werror"]
+ tasks.withType(JavaCompile).configureEach {
+ it.options.compilerArgs += [
+ "-Xlint:all"
+ ]
+ if (rootProject.hasProperty('failOnWarnings') && rootProject.failOnWarnings.toBoolean()) {
+ it.options.compilerArgs += ["-Werror"]
+ }
43
44
45
0 commit comments