From 3f3a045f7fb9d1e2603f848a997d93e210aaf5bf Mon Sep 17 00:00:00 2001 From: David Karnok Date: Tue, 7 Mar 2023 13:43:57 +0100 Subject: [PATCH 1/2] Update build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 69d41f1dfd..d08b90ff27 100644 --- a/build.gradle +++ b/build.gradle @@ -76,7 +76,7 @@ javadoc { options.links( "https://docs.oracle.com/javase/8/docs/api/", - "http://www.reactive-streams.org/reactive-streams-${reactiveStreamsVersion}-javadoc/" + "https://www.reactive-streams.org/reactive-streams-${reactiveStreamsVersion}-javadoc/" ) finalizedBy javadocCleanup From a632d0bf19878d136ef125a9865dfb333ba59b8d Mon Sep 17 00:00:00 2001 From: David Karnok Date: Tue, 7 Mar 2023 14:29:56 +0100 Subject: [PATCH 2/2] Self-hosting the Reactive Streams Javadoc It was build with JDK 9 and lacks the `package-list` file that is required by JDK 8 Javadoc. I had to unpack the official `-javadoc.jar` from maven and copy-pasted the `elements-list` as `package-list`. Let's hope it works. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d08b90ff27..db0bb1db45 100644 --- a/build.gradle +++ b/build.gradle @@ -76,7 +76,7 @@ javadoc { options.links( "https://docs.oracle.com/javase/8/docs/api/", - "https://www.reactive-streams.org/reactive-streams-${reactiveStreamsVersion}-javadoc/" + "https://reactivex.io/RxJava/org.reactivestreams.javadoc/${reactiveStreamsVersion}/" ) finalizedBy javadocCleanup