Skip to content

Commit 7e43a6c

Browse files
committed
Moving StringObservable to contrib module
1 parent 3efaa64 commit 7e43a6c

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+
provided 'junit:junit-dep:4.10'
9+
provided 'org.mockito:mockito-core:1.8.5'
10+
}
11+
12+
javadoc {
13+
options {
14+
doclet = "org.benjchristensen.doclet.DocletExclude"
15+
docletpath = [rootProject.file('./gradle/doclet-exclude.jar')]
16+
stylesheetFile = rootProject.file('./gradle/javadocStyleSheet.css')
17+
windowTitle = "RxJava Javadoc ${project.version}"
18+
}
19+
options.addStringOption('top').value = '<h2 class="title" style="padding-top:40px">RxJava</h2>'
20+
}
21+
22+
jar {
23+
manifest {
24+
name = 'rxjava-string'
25+
instruction 'Bundle-Vendor', 'Netflix'
26+
instruction 'Bundle-DocURL', 'https://github.com/Netflix/RxJava'
27+
instruction 'Import-Package', '!org.junit,!junit.framework,!org.mockito.*,*'
28+
}
29+
}

settings.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ include 'rxjava-core', \
77
'language-adaptors:rxjava-kotlin', \
88
'rxjava-contrib:rxjava-swing', \
99
'rxjava-contrib:rxjava-android', \
10-
'rxjava-contrib:rxjava-apache-http'
10+
'rxjava-contrib:rxjava-apache-http', \
11+
'rxjava-contrib:rxjava-string'

0 commit comments

Comments
 (0)