-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (43 loc) · 1.26 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
buildscript {
ext.kotlin_version = '1.1.50'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'com.github.johnrengelman.shadow' version '2.0.1'
}
apply plugin: 'kotlin'
apply plugin: 'application'
group 'com.uptake'
version '0.1.0'
mainClassName = 'com.uptake.omnibus.MainKt'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
kotlin {
experimental {
coroutines 'enable'
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile 'com.squareup.retrofit2:retrofit:2.2.0'
compile 'com.squareup.retrofit2:converter-jackson:2.2.0'
compile 'com.fasterxml.jackson.core:jackson-core:2.8.'
compile 'com.fasterxml.jackson.module:jackson-module-kotlin:2.8.8'
compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.8'
compile 'io.github.microutils:kotlin-logging:1.4.5'
compile 'org.slf4j:slf4j-simple:1.7.25'
compile 'com.xenomachina:kotlin-argparser:2.0.3'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.16'
testCompile 'com.squareup.okhttp3:mockwebserver:3.8.1'
}
task wrapper(type: Wrapper) {
gradleVersion = '4.2.1'
}