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 {
10
10
dependencies {
11
11
classpath " com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4"
12
12
classpath " org.jfrog.buildinfo:build-info-extractor-gradle:4.5.2"
13
+ classpath " org.javamodularity:moduleplugin:1.5.0"
13
14
}
14
15
}
15
16
16
17
apply plugin : " java"
18
+ apply plugin : " org.javamodularity.moduleplugin"
17
19
apply plugin : " maven"
18
20
apply plugin : " maven-publish"
19
21
apply plugin : " com.jfrog.bintray"
@@ -53,6 +55,12 @@ dependencies {
53
55
testCompile ' org.mockito:mockito-core:1.8.5'
54
56
}
55
57
58
+ test {
59
+ moduleOptions {
60
+ runOnClasspath = true
61
+ }
62
+ }
63
+
56
64
task sourcesJar (type : Jar ) {
57
65
classifier = ' sources'
58
66
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