Skip to content

Commit 6896110

Browse files
Move rx.joins to rxjava-joins module
Migrating rx.joins into a separate contrib module as part of roadmap to 1.0: #1001 (comment) This is being done until the rx.joins API has further time to mature as it is likely to change and we can't make breaking changes any further once we hit 1.0.
1 parent 320495f commit 6896110

File tree

20 files changed

+368
-325
lines changed

20 files changed

+368
-325
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
apply plugin: 'osgi'
2+
3+
sourceCompatibility = JavaVersion.VERSION_1_6
4+
targetCompatibility = JavaVersion.VERSION_1_6
5+
6+
dependencies {
7+
compile project(':rxjava-core')
8+
testCompile project(":rxjava-core").sourceSets.test.output
9+
provided 'junit:junit-dep:4.10'
10+
provided 'org.mockito:mockito-core:1.8.5'
11+
}
12+
13+
jar {
14+
manifest {
15+
name = 'rxjava-joins'
16+
instruction 'Bundle-Vendor', 'Netflix'
17+
instruction 'Bundle-DocURL', 'https://github.com/Netflix/RxJava'
18+
instruction 'Import-Package', '!org.junit,!junit.framework,!org.mockito.*,*'
19+
instruction 'Fragment-Host', 'com.netflix.rxjava.core'
20+
}
21+
}

0 commit comments

Comments
 (0)