This commit is contained in:
天クマ 2026-02-27 13:55:49 -03:00
commit bbf28141e2
61 changed files with 2576 additions and 0 deletions

30
build.gradle.kts Normal file
View file

@ -0,0 +1,30 @@
plugins {
java
application
id("com.gradleup.shadow") version "9.3.0"
}
group = "org.adrianvictor.livingroom"
version = "1.0-SNAPSHOT"
application {
mainClass = "org.adrianvictor.livingroom.Main"
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.xerial:sqlite-jdbc:3.51.2.0")
implementation("com.googlecode.json-simple:json-simple:1.1.1")
implementation("org.freemarker:freemarker:2.3.32")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
tasks.test {
useJUnitPlatform()
}