File tree Expand file tree Collapse file tree
src/main/java/io/reactivex/rxjava4/internal/disposables Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,10 +47,13 @@ dependencies {
4747 testImplementation " org.reactivestreams:reactive-streams-tck-flow:$reactiveStreamsVersion "
4848
4949 testImplementation " org.junit.jupiter:junit-jupiter:$jupiterVersion "
50- testRuntimeOnly " org.junit.vintage:junit-vintage-engine:$jupiterVersion "
5150
52- // The missing piece – required by Gradle 9+
53- testRuntimeOnly " org.junit.platform:junit-platform-launcher:$jupiterLauncherVersion " // match your JUnit version family
51+ // Explicitly add these for IDE compatibility (especially Eclipse)
52+ testImplementation " org.junit.platform:junit-platform-commons:$jupiterLauncherVersion "
53+ testImplementation " org.junit.platform:junit-platform-launcher:$jupiterLauncherVersion "
54+
55+ testRuntimeOnly " org.junit.vintage:junit-vintage-engine:$jupiterVersion "
56+ testRuntimeOnly " org.junit.platform:junit-platform-launcher:$jupiterLauncherVersion " // already have this
5457}
5558
5659// === Experimental JDK handling for Outreach Program ===
Original file line number Diff line number Diff line change @@ -198,7 +198,6 @@ public void reset() {
198198 }
199199 }
200200
201-
202201 @ Override
203202 public DisposableContainer derive () {
204203 var result = new ListCompositeDisposable ();
You can’t perform that action at this time.
0 commit comments