From e156d58769270f3a6511ec4413d3d8c7925ee6d4 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Thu, 2 May 2019 15:54:14 +0100 Subject: [PATCH] Generate javadoc with aggregatedJavadocs option --- .gitignore | 3 ++- build.gradle | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f55b143d2..68823d640 100644 --- a/.gitignore +++ b/.gitignore @@ -139,4 +139,5 @@ checkstyle.xml classes/ p2error.txt *.bat -Nukkit/build/resources/main/plugin.yml \ No newline at end of file +Nukkit/build/resources/main/plugin.yml +docs/ diff --git a/build.gradle b/build.gradle index 3c4acbdec..ac3b36fb5 100644 --- a/build.gradle +++ b/build.gradle @@ -48,6 +48,8 @@ version = String.format("%s.%s", rootVersion, buildNumber) description = rootProject.name +delete "./docs" + subprojects { apply plugin: 'java' apply plugin: 'maven' @@ -85,3 +87,20 @@ subprojects { maven { url 'https://jitpack.io' } } } + +task aggregatedJavadocs(type: Javadoc, description: 'Generate javadocs from all child projects as if it was a single project', group: 'Documentation') { + destinationDir = file("./docs/javadoc") + title = "$project.name $version API" + options.author true + options.links 'http://docs.spring.io/spring/docs/4.3.x/javadoc-api/', 'http://docs.oracle.com/javase/8/docs/api/', 'http://docs.spring.io/spring-ws/docs/2.3.0.RELEASE/api/', 'http://docs.spring.io/spring-security/site/docs/4.0.4.RELEASE/apidocs/' + options.addStringOption('Xdoclint:none', '-quiet') + + subprojects.each { proj -> + proj.tasks.withType(Javadoc).each { javadocTask -> + source += javadocTask.source + classpath += javadocTask.classpath + excludes += javadocTask.excludes + includes += javadocTask.includes + } + } +}