From dc2535516c4e92ec28de9ecc268589d0f4e01bda Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Mon, 7 Jan 2019 20:53:56 +0100 Subject: [PATCH] Fix package list URL for Reactor javadoc in Dokka Reactor is now building its Javadoc with a recent JDK version, which changes the structure of the published HTML pages. Without this change, the build fails during the Dokka generation with the following exception: ``` Exception while loading package-list from ExternalDocumentationLinkImpl( url=http://projectreactor.io/docs/core/release/api/, packageListUrl=http://projectreactor.io/docs/core/release/api/package-list) ``` This commit now points to the `/element-list` page, which seems to contain the same information as the `package-list` page. --- gradle/docs.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle/docs.gradle b/gradle/docs.gradle index 8102dfb550..15c7829265 100644 --- a/gradle/docs.gradle +++ b/gradle/docs.gradle @@ -73,6 +73,7 @@ dokka { } externalDocumentationLink { url = new URL("http://projectreactor.io/docs/core/release/api/") + packageListUrl = new URL("http://projectreactor.io/docs/core/release/api/element-list") } externalDocumentationLink { url = new URL("http://www.reactive-streams.org/reactive-streams-1.0.1-javadoc/")