Skip to content

Commit e3deb9d

Browse files
committed
fix javadoc, fix /rxjava3/ -> /rxjava4/
1 parent 32994e5 commit e3deb9d

3 files changed

Lines changed: 15 additions & 16 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ Note that RxJava 3 components now live under `io.reactivex.rxjava3` and the base
7676

7777
RxJava 3 features several base classes you can discover operators on:
7878

79-
- [`io.reactivex.rxjava4.core.Flowable`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava3/core/Flowable.html): 0..N flows, supporting Reactive-Streams and backpressure
80-
- [`io.reactivex.rxjava4.core.Observable`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava3/core/Observable.html): 0..N flows, no backpressure,
81-
- [`io.reactivex.rxjava4.core.Single`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava3/core/Single.html): a flow of exactly 1 item or an error,
82-
- [`io.reactivex.rxjava4.core.Completable`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava3/core/Completable.html): a flow without items but only a completion or error signal,
83-
- [`io.reactivex.rxjava4.core.Maybe`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava3/core/Maybe.html): a flow with no items, exactly one item or an error.
79+
- [`io.reactivex.rxjava4.core.Flowable`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava4/core/Flowable.html): 0..N flows, supporting Reactive-Streams and backpressure
80+
- [`io.reactivex.rxjava4.core.Observable`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava4/core/Observable.html): 0..N flows, no backpressure,
81+
- [`io.reactivex.rxjava4.core.Single`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava4/core/Single.html): a flow of exactly 1 item or an error,
82+
- [`io.reactivex.rxjava4.core.Completable`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava4/core/Completable.html): a flow without items but only a completion or error signal,
83+
- [`io.reactivex.rxjava4.core.Maybe`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava4/core/Maybe.html): a flow with no items, exactly one item or an error.
8484

8585
### Some terminology
8686

@@ -574,7 +574,7 @@ and for Ivy:
574574

575575
### Snapshots
576576

577-
Snapshots after May 19st, 2025 are available via https://central.sonatype.com/repository/maven-snapshots/io/reactivex/rxjava3/rxjava/
577+
Snapshots after May 19st, 2025 are available via https://central.sonatype.com/repository/maven-snapshots/io/reactivex/rxjava4/rxjava/
578578

579579
```groovy
580580
repositories {
@@ -621,5 +621,5 @@ For bugs, questions and discussions please use the [Github Issues](https://githu
621621
See the License for the specific language governing permissions and
622622
limitations under the License.
623623

624-
[beta source link]: https://github.com/ReactiveX/RxJava/blob/3.x/src/main/java/io/reactivex/rxjava3/annotations/Beta.java
625-
[experimental source link]: https://github.com/ReactiveX/RxJava/blob/3.x/src/main/java/io/reactivex/rxjava3/annotations/Experimental.java
624+
[beta source link]: https://github.com/ReactiveX/RxJava/blob/3.x/src/main/java/io/reactivex/rxjava4/annotations/Beta.java
625+
[experimental source link]: https://github.com/ReactiveX/RxJava/blob/3.x/src/main/java/io/reactivex/rxjava4/annotations/Experimental.java

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ apply from: file("gradle/javadoc_cleanup.gradle")
7373

7474
javadoc {
7575
source = sourceSets.main.allJava.matching {
76-
include 'io/reactivex/rxjava3/**'
76+
include 'io/reactivex/rxjava4/**'
7777
exclude '**/internal/**'
7878
exclude '**/test/**'
7979
exclude '**/perf/**'
@@ -171,6 +171,7 @@ jmh {
171171

172172
test {
173173
maxHeapSize = "1200m"
174+
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
174175
useJUnitPlatform()
175176
}
176177

@@ -185,6 +186,8 @@ tasks.register('testNG', Test) {
185186
// Tell it to use TestNG explicitly
186187
useTestNG()
187188

189+
maxParallelForks = 1
190+
188191
// Optional: fine-tune includes/excludes
189192
// include '**/*NgTest.class', '**/*TestNG.class'
190193
// exclude '**/*JUnitTest.class'
@@ -223,10 +226,6 @@ tasks.withType(Test) {
223226
warn.events = ["failed", "skipped"]
224227
warn.exceptionFormat = "full"
225228
}
226-
227-
// if (System.getenv("CI") == null) {
228-
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
229-
// }
230229
}
231230

232231
jacocoTestReport {

docs/Getting-Started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,19 @@ You need Java 6 or later.
6666

6767
### Snapshots
6868

69-
Snapshots after May 1st, 2021 are available via https://oss.sonatype.org/content/repositories/snapshots/io/reactivex/rxjava3/rxjava/
69+
Snapshots after May 1st, 2021 are available via https://oss.sonatype.org/content/repositories/snapshots/io/reactivex/rxjava4/rxjava/
7070

7171
```groovy
7272
repositories {
7373
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
7474
}
7575
7676
dependencies {
77-
implementation 'io.reactivex.rxjava3:rxjava:3.0.0-SNAPSHOT'
77+
implementation 'io.reactivex.rxjava3:rxjava:4.0.0-SNAPSHOT'
7878
}
7979
```
8080

81-
JavaDoc snapshots are available at http://reactivex.io/RxJava/3.x/javadoc/snapshot
81+
JavaDoc snapshots are available at http://reactivex.io/RxJava/4.x/javadoc/snapshot
8282

8383

8484
## Building

0 commit comments

Comments
 (0)