Skip to content

Commit cf33aad

Browse files
New contrib module: rxjava-async-util
Home for async utility functions with juc.Future, Actions, Functions etc that don’t need to be in rxjava-core. As per discussions at: - ReactiveX#646 (comment) - ReactiveX#645 (comment) - ReactiveX#622 (comment)
1 parent 43c16bb commit cf33aad

File tree

6 files changed

+708
-507
lines changed

6 files changed

+708
-507
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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-async-util'
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+
}
20+
}

0 commit comments

Comments
 (0)