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.
2 parents c9962e7 + 53e1199 commit 69fd014Copy full SHA for 69fd014
build.gradle
@@ -22,11 +22,21 @@ allprojects {
22
}
23
24
25
+//Skip Javadoc generation for Java 1.8 as it breaks build
26
+if (JavaVersion.current().isJava8Compatible()) {
27
+ allprojects {
28
+ tasks.withType(Javadoc) {
29
+ options.addStringOption('Xdoclint:none', '-quiet')
30
+ }
31
32
+}
33
+
34
/**
35
* Configure common tasks on all the submodules
36
*/
37
allprojects { project ->
38
39
40
// Get constants, this is where we store things
41
// like the list of submodules or the version
42
project.apply from: "$rootDir/common/constants.gradle"
0 commit comments