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 c9962e7 commit 8fb8bc4Copy full SHA for 8fb8bc4
build.gradle
@@ -27,6 +27,15 @@ allprojects {
27
*/
28
allprojects { project ->
29
30
+ //Skip Javadoc generation for Java 1.8 as it breaks build
31
+ if (JavaVersion.current().isJava8Compatible()) {
32
+ allprojects {
33
+ tasks.withType(Javadoc) {
34
+ options.addStringOption('Xdoclint:none', '-quiet')
35
+ }
36
37
38
+
39
// Get constants, this is where we store things
40
// like the list of submodules or the version
41
project.apply from: "$rootDir/common/constants.gradle"
0 commit comments