We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd647f6 commit b550615Copy full SHA for b550615
2 files changed
build.gradle
@@ -1,17 +1,15 @@
1
-buildscript {
2
- repositories { jcenter() }
3
- dependencies { classpath 'com.netflix.nebula:gradle-rxjava-project-plugin:1.12.+' }
4
-}
5
-
6
-apply plugin: 'rxjava-project'
+apply plugin: 'java'
7
8
-sourceCompatibility = JavaVersion.VERSION_1_8
9
-targetCompatibility = JavaVersion.VERSION_1_8
+repositories {
+ mavenCentral()
+}
10
11
dependencies {
12
- compile 'io.reactivex:rxjava:1.0.0'
+ compile 'io.reactivex:rxjava:1.0.11'
13
testCompile 'junit:junit-dep:4.10'
14
testCompile 'org.mockito:mockito-core:1.8.5'
15
}
16
17
+jar {
+ from configurations.compile.collect { entry -> zipTree(entry) }
settings.gradle
@@ -1 +1 @@
-rootProject.name='rxjavafx'
+//rootProject.name='rxjavafx'
0 commit comments