-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
38 lines (31 loc) · 756 Bytes
/
build.gradle.kts
File metadata and controls
38 lines (31 loc) · 756 Bytes
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
plugins {
id("java")
}
java {
toolchain.languageVersion = JavaLanguageVersion.of(21)
withSourcesJar()
withJavadocJar()
}
tasks.compileJava {
options.release.set(21)
}
group = "net.thenextlvl.incidents"
version = "0.1.0"
repositories {
mavenCentral()
}
dependencies {
implementation("io.javalin:javalin:6.7.0")
implementation("ch.qos.logback:logback-classic:1.5.19")
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation(platform("org.junit:junit-bom:6.0.0"))
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
tasks.test {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
showCauses = true
showExceptions = true
}
}