-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
54 lines (43 loc) · 1.95 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
48
49
50
51
52
53
54
buildscript {
ext {
KOTLIN_VERSION = "1.3.72"
KETHEREUM_VERSION = "0.81.7"
}
repositories {
mavenCentral()
maven { url 'https://www.jitpack.io' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}"
}
}
apply plugin: "kotlin"
apply plugin: 'application'
mainClassName = "net.goerli.pusher.MainKt"
repositories {
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.4"
implementation "com.github.walleth.kethereum:eip155:${KETHEREUM_VERSION}"
implementation "com.github.walleth.kethereum:erc681:${KETHEREUM_VERSION}"
implementation "com.github.walleth.kethereum:erc1450:${KETHEREUM_VERSION}"
implementation "com.github.walleth.kethereum:extensions_transactions:${KETHEREUM_VERSION}"
implementation "com.github.walleth.kethereum:flows:${KETHEREUM_VERSION}"
implementation "com.github.walleth.kethereum:rpc:${KETHEREUM_VERSION}"
implementation "com.github.walleth.kethereum:rpc_min3:${KETHEREUM_VERSION}"
implementation "com.github.walleth.kethereum:model:${KETHEREUM_VERSION}"
implementation "com.github.walleth.kethereum:crypto:${KETHEREUM_VERSION}"
implementation "com.github.walleth.kethereum:crypto_impl_bouncycastle:${KETHEREUM_VERSION}"
implementation "com.github.walleth.kethereum:keystore:${KETHEREUM_VERSION}"
implementation "com.github.walleth.console-barcodes:lib:0.2"
implementation 'com.squareup.okhttp3:okhttp:3.12.0'
implementation "com.squareup.okio:okio:2.4.0"
implementation "com.github.walleth:khex:0.6"
testImplementation 'org.assertj:assertj-core:3.11.1'
testCompile 'org.junit.jupiter:junit-jupiter-api:5.3.2'
testCompile 'org.junit.jupiter:junit-jupiter-params:5.3.2'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.3.2'
}