meow
This commit is contained in:
commit
ca1cb77993
12 changed files with 479 additions and 0 deletions
26
build.gradle.kts
Normal file
26
build.gradle.kts
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
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()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue