Skip to content

Commit

Permalink
3.x: Try using https to access the reactive streams javadoc (#7535)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
akarnokd committed Mar 7, 2023
1 parent 3468c8b commit ed674be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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://reactivex.io/RxJava/org.reactivestreams.javadoc/${reactiveStreamsVersion}/"
)

finalizedBy javadocCleanup
Expand Down

0 comments on commit ed674be

Please sign in to comment.