-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.gradle
46 lines (34 loc) · 1.22 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.30' apply false
}
subprojects {
apply plugin: 'org.jetbrains.kotlin.jvm'
group = 'com.medly.norm'
repositories {
mavenCentral()
}
dependencies {
implementation platform('org.jetbrains.kotlin:kotlin-bom')
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
testImplementation 'org.testcontainers:postgresql:1.16.0'
testImplementation 'org.postgresql:postgresql:42.2.23'
testImplementation 'io.kotest:kotest-runner-junit5-jvm:4.6.2'
testImplementation 'io.kotest:kotest-assertions-core-jvm:4.6.2'
testImplementation 'io.kotest:kotest-property-jvm:4.6.2'
testImplementation 'io.kotest:kotest-extensions-testcontainers-jvm:4.4.3'
testImplementation 'io.kotest:kotest-plugins-pitest:4.4.3'
testImplementation 'io.kotest:kotest-runner-console-jvm:4.1.3.2'
}
test {
useJUnitPlatform()
testLogging {
events "PASSED", "FAILED", "SKIPPED"
exceptionFormat "full"
}
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
kotlinOptions {
jvmTarget = "11"
}
}
}