26 lines
No EOL
450 B
Text
26 lines
No EOL
450 B
Text
plugins {
|
|
id("java")
|
|
application
|
|
}
|
|
|
|
group = "dev.exhq"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
application {
|
|
mainClass = "dev.exhq.Main"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("io.javalin:javalin:6.3.0")
|
|
implementation("org.slf4j:slf4j-simple:2.0.16")
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |