-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
executable file
·47 lines (39 loc) · 1.23 KB
/
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
45
46
47
group 'RxWSocket'
version '1.0.20'
apply plugin: 'com.novoda.bintray-release' // must be applied after your artifact generating plugin (eg. java / com.android.library)
apply plugin: 'kotlin'
buildscript {
ext.kotlin_version = '1.3.41'
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.novoda:bintray-release:0.9.1'
}
}
allprojects {
repositories {
jcenter()
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'com.squareup.okhttp3:okhttp:3.12.3'
implementation "io.reactivex.rxjava2:rxjava:2.2.10"
implementation 'io.reactivex.rxjava2:rxkotlin:2.4.0-beta.1'
testImplementation "junit:junit:4.12"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0"
implementation "org.jetbrains.kotlin:kotlin-reflect:1.2.0"
}
wrapper {
gradleVersion = '5.4.1'
}
publish {
userOrg = 'bopbi'
groupId = 'com.github.bopbi.rxwsocket'
artifactId = 'RxWSocket'
publishVersion = version
desc = 'RxKotlin OkHttp WebSocket Wrapper for Kotlin, Java, and Android'
website = 'https://github.com/bopbi/RxWSocket'
}