-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (39 loc) · 934 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
plugins {
id "org.jetbrains.kotlin.jvm" version "1.2.51"
id "application"
id "idea"
}
def kotlin_version = "1.2.51"
mainClassName = "aoc.Main"
defaultTasks "build"
repositories {
jcenter()
mavenCentral()
maven {
name "aliyun-maven"
url "http://maven.aliyun.com/nexus/content/groups/public/"
}
ivy {
name "typesafe-ivy-release"
url "https://repo.typesafe.com/typesafe/ivy-releases"
layout "ivy"
}
}
kotlin {
experimental {
coroutines "enable"
}
}
test {
useJUnitPlatform()
testLogging {
showStandardStreams = true
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
compile "org.jetbrains.kotlin:kotlin-reflect:${kotlin_version}"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.14"
compile group: "ch.qos.logback", name: "logback-classic", version: "1.2.2"
testCompile "io.kotlintest:kotlintest-runner-junit5:3.1.8"
}