-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle.kts
58 lines (45 loc) · 1.56 KB
/
build.gradle.kts
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
55
56
57
58
apply {
from("https://raw.githubusercontent.com/ligi/gradle-common/master/versions_plugin_stable_only.gradle")
}
buildscript {
repositories {
jcenter()
maven("https://jitpack.io")
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("com.github.ben-manes:gradle-versions-plugin:${Versions.versions_plugin}")
}
}
apply(plugin = "kotlin")
plugins {
application
}
application {
mainClassName = "org.komputing.etherscan.downloader.DownloaderKt"
}
repositories {
jcenter()
maven("https://jitpack.io")
}
dependencies {
"implementation"("org.jetbrains.kotlin:kotlin-stdlib:${Versions.kotlin}")
"implementation"("com.github.komputing.kethereum:model:0.80.1")
"implementation"("com.github.komputing.kethereum:erc55:0.80.1")
"implementation"("com.github.doyaaaaaken:kotlin-csv-jvm:0.7.3")
"implementation"("com.github.kittinunf.fuel:fuel-moshi:2.2.1")
"implementation"("com.squareup.moshi:moshi:${Versions.moshi}")
"implementation"("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3")
"testImplementation"("org.assertj:assertj-core:3.14.0")
"testImplementation"("org.junit.jupiter:junit-jupiter-api:${Versions.jupiter}")
"testRuntime"("org.junit.jupiter:junit-jupiter-engine:${Versions.jupiter}")
"testImplementation"("org.jetbrains.kotlin:kotlin-test")
"testImplementation"("io.mockk:mockk:1.9.3")
}
tasks.withType<Test> {
useJUnitPlatform()
}
configure<JavaPluginExtension> {
withSourcesJar()
withJavadocJar()
}