Skip to content

Commit b2180aa

Browse files
Merge pull request ReactiveX#707 from benjchristensen/rxjava-async-util-module
Merge of rxjava-async-util
2 parents 43c16bb + a87489a commit b2180aa

File tree

17 files changed

+3426
-1197
lines changed

17 files changed

+3426
-1197
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)