Skip to content

Commit 30d4527

Browse files
authored
3.x: Add missing exports packages, fix param overrides (#7336)
1 parent abeab97 commit 30d4527

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ if (releaseTag != null && !releaseTag.isEmpty()) {
3131
logger.lifecycle("Releasing with version: " + project.version)
3232
}
3333

34-
group = "io.reactivex.rxjava3"
35-
version = project.properties["VERSION_NAME"]
36-
description = "RxJava: Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM."
37-
3834
repositories {
3935
mavenCentral()
4036
}
@@ -57,7 +53,6 @@ java {
5753
sourceCompatibility = JavaVersion.VERSION_1_8
5854
targetCompatibility = JavaVersion.VERSION_1_8
5955
}
60-
ext.javaCompatibility = JavaVersion.VERSION_1_8
6156

6257
tasks.withType(JavaCompile) {
6358
options.compilerArgs << "-parameters"

src/main/module/module-info.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,17 @@
1616
exports io.reactivex.rxjava3.core;
1717
exports io.reactivex.rxjava3.disposables;
1818
exports io.reactivex.rxjava3.exceptions;
19+
exports io.reactivex.rxjava3.flowables;
1920
exports io.reactivex.rxjava3.functions;
2021
exports io.reactivex.rxjava3.observables;
2122
exports io.reactivex.rxjava3.observers;
23+
exports io.reactivex.rxjava3.operators;
2224
exports io.reactivex.rxjava3.parallel;
2325
exports io.reactivex.rxjava3.plugins;
2426
exports io.reactivex.rxjava3.processors;
2527
exports io.reactivex.rxjava3.schedulers;
2628
exports io.reactivex.rxjava3.subjects;
2729
exports io.reactivex.rxjava3.subscribers;
2830

29-
requires org.reactivestreams;
31+
requires transitive org.reactivestreams;
3032
}

0 commit comments

Comments
 (0)