forked from uberto/kotlin-pearls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (32 loc) · 919 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
plugins {
id "java"
id "org.jetbrains.kotlin.jvm" version "${kotlin_version}"
}
group 'com.ubertob'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.11
repositories {
mavenCentral()
}
wrapper {
gradleVersion = "6.7"
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation 'org.jetbrains.kotlin:kotlin-reflect'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3'
testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.17'
testImplementation 'io.strikt:strikt-core:0.31.0'
testImplementation 'com.beust:klaxon:5.5'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.2'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.4.2'
}
test {
useJUnitPlatform()
testLogging.showStandardStreams = true
}
compileKotlin {
kotlinOptions {
freeCompilerArgs = ["-XXLanguage:+InlineClasses"]
}
}