Skip to content

Commit ed674be

Browse files
authored
3.x: Try using https to access the reactive streams javadoc (#7535)
* Update build.gradle * 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.
1 parent 3468c8b commit ed674be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ javadoc {
7676

7777
options.links(
7878
"https://docs.oracle.com/javase/8/docs/api/",
79-
"http://www.reactive-streams.org/reactive-streams-${reactiveStreamsVersion}-javadoc/"
79+
"https://reactivex.io/RxJava/org.reactivestreams.javadoc/${reactiveStreamsVersion}/"
8080
)
8181

8282
finalizedBy javadocCleanup

0 commit comments

Comments
 (0)