-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
37 lines (31 loc) · 881 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.0'
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
//sourceCompatibility = 1.8
version = '1.0'
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
sourceSets {
examples {
compileClasspath += sourceSets.main.runtimeClasspath
}
}
dependencies {
compile 'org.jetbrains.kotlin:kotlin-stdlib:1.0.0'
compile 'com.google.code.gson:gson:2.3.+'
compile 'com.squareup.okhttp:okhttp-ws:2.3.+'
compile 'com.github.reactivex:rxkotlin:v0.50'
testCompile 'org.jetbrains.kotlin:kotlin-test-junit:1.0.0'
testCompile 'junit:junit:4.+'
testCompile 'javax.websocket:javax.websocket-api:1.0'
testCompile 'org.eclipse.jetty.websocket:javax-websocket-server-impl:9.2.7.v20150116'
}