Closed claudio-rosati closed 5 years ago
RxJava added Automatic-Module-Name: io.reactivex.rxjava2 to the manifest, in order to have a small step into the Java 11 full module transition. This was in the following clause of the build.graddle file:
Automatic-Module-Name: io.reactivex.rxjava2
build.graddle
jar { manifest { name = "rxjava" instruction "Bundle-Vendor", "RxJava Contributors" instruction "Bundle-DocURL", "https://github.com/ReactiveX/RxJava" instruction "Import-Package", "!org.junit,!junit.framework,!org.mockito.*,!org.testng.*,*" instruction "Eclipse-ExtensibleAPI", "true" instruction "Automatic-Module-Name", "io.reactivex.rxjava2" } }
Can this be made also for RxJavaFX?
I'll take a look. First I need to get the current codebase deployed for Java 11 which I have been having challenges with.
Thank you
RxJava added
Automatic-Module-Name: io.reactivex.rxjava2
to the manifest, in order to have a small step into the Java 11 full module transition. This was in the following clause of thebuild.graddle
file:Can this be made also for RxJavaFX?