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 f668a0b + b5c7d57 commit 6f51a23Copy full SHA for 6f51a23
build.gradle
@@ -68,10 +68,10 @@ subprojects {
68
69
// https://discuss.gradle.org/t/best-approach-gradle-multi-module-project-generate-just-one-global-javadoc/18657/21
70
tasks.register('aggregatedJavadocs', Javadoc) {
71
- destinationDir = file("${layout.buildDirectory}/docs/javadoc")
+ destinationDir = layout.buildDirectory.file("docs/javadoc").get().asFile
72
title = "$project.name $version"
73
// options.memberLevel = JavadocMemberLevel.PRIVATE
74
- options.links 'https://docs.oracle.com/javase/8/docs/api/'
+ options.links 'https://docs.oracle.com/javase/11/docs/api/'
75
options.encoding 'UTF-8'
76
// Fixes unknown tag @implNote; the other two were added precautionary
77
options.tags = [
0 commit comments