2019-05-17 00:45:34 +00:00
|
|
|
buildscript {
|
|
|
|
ext {
|
2021-05-25 08:57:48 +00:00
|
|
|
KOTLIN_VERSION = "1.5.10"
|
2021-04-04 07:04:20 +00:00
|
|
|
KETHEREUM_VERSION = "0.83.6"
|
2019-05-17 00:45:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}"
|
2020-11-13 00:31:30 +00:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.36.0'
|
2019-05-17 00:45:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: "kotlin"
|
|
|
|
apply plugin: "application"
|
|
|
|
apply plugin: "com.github.ben-manes.versions"
|
|
|
|
|
|
|
|
mainClassName = "org.ethereum.lists.chains.MainKt"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
maven { url "https://kotlin.bintray.com/kotlinx" }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-05-17 01:21:51 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}"
|
2019-05-17 00:45:34 +00:00
|
|
|
|
2019-05-17 01:21:51 +00:00
|
|
|
implementation "com.github.komputing.kethereum:rpc:${KETHEREUM_VERSION}"
|
|
|
|
implementation "com.github.komputing.kethereum:model:${KETHEREUM_VERSION}"
|
2020-03-16 04:53:41 +00:00
|
|
|
implementation "com.github.komputing.kethereum:erc55:${KETHEREUM_VERSION}"
|
2019-05-17 01:21:51 +00:00
|
|
|
implementation "com.github.komputing.kethereum:crypto_impl_bouncycastle:${KETHEREUM_VERSION}"
|
2019-05-17 00:45:34 +00:00
|
|
|
|
2020-11-13 00:32:29 +00:00
|
|
|
implementation 'com.beust:klaxon:5.4'
|
2021-04-04 07:04:52 +00:00
|
|
|
implementation 'com.squareup.moshi:moshi-kotlin:1.12.0'
|
2020-07-14 14:17:56 +00:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.7.2'
|
2019-05-17 00:45:34 +00:00
|
|
|
|
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test"
|
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
|
|
|
|
}
|
|
|
|
|