Skip to content

Commit b550615

Browse files
committed
quick fixes to gradle file to get a successful build
1 parent cd647f6 commit b550615

2 files changed

Lines changed: 9 additions & 11 deletions

File tree

build.gradle

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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'
1+
apply plugin: 'java'
72

8-
sourceCompatibility = JavaVersion.VERSION_1_8
9-
targetCompatibility = JavaVersion.VERSION_1_8
3+
repositories {
4+
mavenCentral()
5+
}
106

117
dependencies {
12-
compile 'io.reactivex:rxjava:1.0.0'
8+
compile 'io.reactivex:rxjava:1.0.11'
139
testCompile 'junit:junit-dep:4.10'
1410
testCompile 'org.mockito:mockito-core:1.8.5'
1511
}
1612

17-
13+
jar {
14+
from configurations.compile.collect { entry -> zipTree(entry) }
15+
}

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name='rxjavafx'
1+
//rootProject.name='rxjavafx'

0 commit comments

Comments
 (0)