Skip to content

Commit 5657920

Browse files
committed
merge
1 parent eee2324 commit 5657920

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

gradle/buildscript.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ dependencies {
88
classpath 'com.mapvine:gradle-cobertura-plugin:0.1'
99
classpath 'gradle-release:gradle-release:1.1.5'
1010
classpath 'org.ajoberstar:gradle-git:0.5.0'
11+
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:0.6.+'
1112
}

language-adaptors/rxjava-kotlin/README.md

Whitespace-only changes.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
apply plugin: 'kotlin'
2+
apply plugin: 'osgi'
3+
4+
dependencies {
5+
compile project(':rxjava-core')
6+
compile 'org.jetbrains.kotlin:kotlin-stdlib:0.6.+'
7+
provided 'junit:junit-dep:4.10'
8+
provided 'org.mockito:mockito-core:1.8.5'
9+
}
10+
11+
jar {
12+
manifest {
13+
name = 'rxjava-kotlin'
14+
instruction 'Bundle-Vendor', 'Netflix'
15+
instruction 'Bundle-DocURL', 'https://github.com/Netflix/RxJava'
16+
instruction 'Import-Package', '!org.junit,!junit.framework,!org.mockito.*,*'
17+
instruction 'Fragment-Host', 'com.netflix.rxjava.core'
18+
}
19+
}

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ include 'rxjava-core', \
44
'language-adaptors:rxjava-clojure', \
55
'language-adaptors:rxjava-jruby', \
66
'language-adaptors:rxjava-scala', \
7+
'language-adaptors:rxjava-kotlin', \
78
'rxjava-contrib:rxjava-swing', \
89
'rxjava-contrib:rxjava-android', \
910
'rxjava-contrib:rxjava-apache-http'

0 commit comments

Comments
 (0)