-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
44 lines (32 loc) · 1.02 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
buildscript {
ext {
KOTLIN_VERSION = "1.1.51"
}
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.15.0'
}
}
apply plugin: "kotlin"
apply plugin: 'application'
apply plugin: 'com.github.ben-manes.versions'
mainClassName = "wallethpush.MainKt"
repositories {
jcenter()
maven { url 'http://dl.bintray.com/kotlin/ktor' }
maven { url "https://jitpack.io" }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}"
compile 'com.nimbusds:nimbus-jose-jwt:4.39.2'
compile 'com.squareup.moshi:moshi:1.5.0'
compile 'com.squareup.okhttp3:okhttp:3.8.1'
compile 'com.github.walleth.kethereum:rpc:0.16'
compile 'org.jetbrains.ktor:ktor-core:0.3.0'
compile 'org.jetbrains.ktor:ktor-netty:0.3.0'
compile 'org.mortbay.jetty.alpn:alpn-boot:8.1.11.v20170118'
testCompile 'org.assertj:assertj-core:3.8.0'
}