-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
41 lines (35 loc) · 970 Bytes
/
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
base
kotlin("jvm") version("1.3.10") apply false
}
allprojects {
group = "com.truecaller.puzzles"
version = "1.0"
repositories {
jcenter()
}
}
subprojects {
apply(plugin = "org.jetbrains.kotlin.jvm")
dependencies {
"implementation"("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
"testImplementation"("org.junit.jupiter:junit-jupiter-api:5.3.2")
"testRuntimeOnly"("org.junit.jupiter:junit-jupiter-engine:5.3.2")
"testImplementation"("org.assertj:assertj-core:3.12.2")
"testImplementation"("net.jqwik:jqwik:1.1.1")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "1.8"
}
}
tasks.withType<Test> {
useJUnitPlatform {
includeEngines = setOf("jqwik")
}
testLogging {
events("passed", "skipped", "failed")
}
}
}