diff --git a/build.gradle b/build.gradle index d10f73558a..21459aee74 100644 --- a/build.gradle +++ b/build.gradle @@ -31,10 +31,6 @@ if (releaseTag != null && !releaseTag.isEmpty()) { logger.lifecycle("Releasing with version: " + project.version) } -group = "io.reactivex.rxjava3" -version = project.properties["VERSION_NAME"] -description = "RxJava: Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM." - repositories { mavenCentral() } @@ -57,7 +53,6 @@ java { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } -ext.javaCompatibility = JavaVersion.VERSION_1_8 tasks.withType(JavaCompile) { options.compilerArgs << "-parameters" diff --git a/src/main/module/module-info.java b/src/main/module/module-info.java index 19b89790d3..4bed327f1a 100644 --- a/src/main/module/module-info.java +++ b/src/main/module/module-info.java @@ -16,9 +16,11 @@ exports io.reactivex.rxjava3.core; exports io.reactivex.rxjava3.disposables; exports io.reactivex.rxjava3.exceptions; + exports io.reactivex.rxjava3.flowables; exports io.reactivex.rxjava3.functions; exports io.reactivex.rxjava3.observables; exports io.reactivex.rxjava3.observers; + exports io.reactivex.rxjava3.operators; exports io.reactivex.rxjava3.parallel; exports io.reactivex.rxjava3.plugins; exports io.reactivex.rxjava3.processors; @@ -26,5 +28,5 @@ exports io.reactivex.rxjava3.subjects; exports io.reactivex.rxjava3.subscribers; - requires org.reactivestreams; + requires transitive org.reactivestreams; } \ No newline at end of file