File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ tasks.withType(JavaCompile) {
6767apply from : file(" gradle/javadoc_cleanup.gradle" )
6868
6969javadoc {
70+ include ' io/reactivex/rxjava3/**' // all public under rxjava3
7071 exclude " **/internal/**"
7172 exclude " **/test/**"
7273 exclude " **/perf/**"
@@ -79,9 +80,10 @@ javadoc {
7980 options. addStringOption(" doctitle" ). value = " "
8081 options. addStringOption(" header" ). value = " "
8182 options. stylesheetFile = project. file(" gradle/stylesheet.css" )
83+ options. addBooleanOption(' Xdoclint:none' , true ) // disables all doclint checks (modern JDKs)
8284
8385 options. links(
84- " https://docs.oracle.com/javase/8 /docs/api/" ,
86+ " https://docs.oracle.com/en/java/ javase/25 /docs/api/" ,
8587 " https://reactivex.io/RxJava/org.reactivestreams.javadoc/${ reactiveStreamsVersion} /"
8688 )
8789
You can’t perform that action at this time.
0 commit comments