-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (35 loc) · 1012 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
group 'com.lvla'
version '0.1'
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'com.novoda.bintray-release'
buildscript {
ext.kotlin_version = '1.1.0'
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.novoda:bintray-release:0.4.0'
}
}
sourceCompatibility = 1.7
repositories {
mavenCentral()
maven { url 'http://dl.bintray.com/ngsw-taro/maven' }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "com.github.akarnokd:rxjava2-interop:0.9.4"
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile 'com.taroid.knit:knit:0.1.2'
}
publish {
userOrg = 'lvla'
groupId = 'com.lvla.android'
artifactId = 'rxjava2-interop-kt'
publishVersion = "0.2.1"
desc = "Kotlin extension functions for RxJava2Interop"
website = 'https://github.com/lvla/RxJava2InteropKt'
}