2019-05-17 00:45:34 +00:00
|
|
|
buildscript {
|
|
|
|
ext {
|
2021-11-16 09:01:35 +00:00
|
|
|
KOTLIN_VERSION = "1.6.0"
|
2021-09-14 11:39:04 +00:00
|
|
|
KETHEREUM_VERSION = "0.85.3"
|
2019-05-17 00:45:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2021-07-02 21:57:54 +00:00
|
|
|
gradlePluginPortal()
|
2019-05-17 00:45:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}"
|
2021-07-02 21:59:11 +00:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.39.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 {
|
2021-07-02 21:57:54 +00:00
|
|
|
mavenCentral()
|
2019-05-17 00:45:34 +00:00
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2021-07-02 21:58:50 +00:00
|
|
|
implementation 'com.beust:klaxon:5.5'
|
2021-12-10 08:47:49 +00:00
|
|
|
implementation 'com.squareup.moshi:moshi-kotlin:1.13.0'
|
2021-11-23 20:16:21 +00:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
|
2019-05-17 00:45:34 +00:00
|
|
|
|
2021-10-10 15:38:34 +00:00
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test:${KOTLIN_VERSION}"
|
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN_VERSION}"
|
2019-05-17 00:45:34 +00:00
|
|
|
}
|
|
|
|
|