-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (28 loc) · 851 Bytes
/
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
apply plugin: "kotlin"
apply plugin: "com.github.johnrengelman.shadow"
apply plugin: "application"
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "io.javalin:javalin:2.3.0"
implementation "com.squareup.moshi:moshi:1.7.0"
implementation "com.squareup.moshi:moshi-kotlin:1.7.0"
implementation "com.github.kittinunf.fuel:fuel:1.15.1"
implementation "com.github.kittinunf.fuel:fuel-moshi:1.15.1"
implementation "org.slf4j:slf4j-simple:1.7.25"
}
buildscript {
ext.kotlin_version = '1.2.71'
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
}
}
mainClassName = 'MainKt'