File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,12 @@ buildscript {
1010 dependencies {
1111 classpath " com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4"
1212 classpath " org.jfrog.buildinfo:build-info-extractor-gradle:4.5.2"
13+ classpath " org.javamodularity:moduleplugin:1.5.0"
1314 }
1415}
1516
1617apply plugin : " java"
18+ apply plugin : " org.javamodularity.moduleplugin"
1719apply plugin : " maven"
1820apply plugin : " maven-publish"
1921apply plugin : " com.jfrog.bintray"
@@ -53,6 +55,12 @@ dependencies {
5355 testCompile ' org.mockito:mockito-core:1.8.5'
5456}
5557
58+ test {
59+ moduleOptions {
60+ runOnClasspath = true
61+ }
62+ }
63+
5664task sourcesJar (type : Jar ) {
5765 classifier = ' sources'
5866 from sourceSets. main. allSource
Original file line number Diff line number Diff line change 1+ module rxjavafx {
2+ requires io .reactivex .rxjava2 ;
3+ requires javafx .base ;
4+ requires javafx .graphics ;
5+ requires javafx .controls ;
6+ requires org .reactivestreams ;
7+
8+ exports io .reactivex .rxjavafx .observables ;
9+ exports io .reactivex .rxjavafx .observers ;
10+ exports io .reactivex .rxjavafx .schedulers ;
11+ exports io .reactivex .rxjavafx .sources ;
12+ exports io .reactivex .rxjavafx .subscriptions ;
13+ exports io .reactivex .rxjavafx .transformers ;
14+ }
You can’t perform that action at this time.
0 commit comments