We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 371997b commit 3f584e1Copy full SHA for 3f584e1
build.gradle
@@ -74,7 +74,10 @@ task sourcesJar(type: Jar, dependsOn: classes) {
74
allprojects {
75
gradle.projectsEvaluated {
76
tasks.withType(JavaCompile) {
77
- options.compilerArgs << "-Xlint:all"
+ options.compilerArgs << "-Xlint:all" << "-Werror"
78
+ }
79
+ tasks.withType(Javadoc) {
80
+ options.addStringOption('Xwerror', '-quiet')
81
}
82
83
0 commit comments