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