forked from ethereum-lists/chains
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (19 loc) · 1.09 KB
/
Copy pathbuild.gradle
File metadata and controls
28 lines (19 loc) · 1.09 KB
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
apply plugin: "application"
mainClassName = "org.ethereum.lists.chains.MainKt"
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}"
implementation "com.github.komputing.kethereum:rpc:${KETHEREUM_VERSION}"
implementation "com.github.komputing.kethereum:model:${KETHEREUM_VERSION}"
implementation "com.github.komputing.kethereum:erc55:${KETHEREUM_VERSION}"
implementation "com.github.komputing.kethereum:crypto_impl_bouncycastle:${KETHEREUM_VERSION}"
implementation 'com.beust:klaxon:5.6'
implementation 'com.squareup.moshi:moshi:1.15.0'
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
implementation "com.twelvemonkeys.imageio:imageio-jpeg:3.9.4"
implementation "com.twelvemonkeys.imageio:imageio-batik:3.9.4"
implementation "org.apache.xmlgraphics:batik-rasterizer-ext:1.17"
implementation project(":model")
testImplementation "org.jetbrains.kotlin:kotlin-test:${KOTLIN_VERSION}"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN_VERSION}"
implementation 'com.github.ligi:ipfs-api-kotlin:0.15'
}