-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
45 lines (38 loc) · 1.19 KB
/
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
42
43
44
45
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
plugins {
kotlin("jvm") version "2.1.0" apply false
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
}
group = "nl.sbmf21.aoc"
val annotationsVersion by extra { "24.0.1" }
val gsonVersion by extra { "2.10.1" }
val junitJupiterVersion by extra { "5.10.1" }
val reflectionsVersion by extra { "0.10.2" }
val sbmfMathVersion by extra { "1.5.0" }
val slf4jVersion by extra { "2.0.9" }
repositories {
mavenCentral()
}
subprojects {
if (name != "aoc-commons") {
apply(plugin = "com.github.johnrengelman.shadow")
apply(plugin = "application")
}
repositories {
mavenCentral()
maven("https://gitlab.sbmf21.nl/api/v4/groups/5/-/packages/maven") { name = "sbmf" }
}
tasks {
withType<Test> {
testLogging {
events = setOf(TestLogEvent.FAILED)
exceptionFormat = TestExceptionFormat.FULL
showExceptions = true
showCauses = true
showStackTraces = false
showStandardStreams = false
}
}
}
}