migrated to gradle

This commit is contained in:
Parker TenBroeck 2025-05-04 23:57:13 -04:00
parent 0dd6fb237d
commit ecb18b417e
43 changed files with 619 additions and 177 deletions

21
app/build.gradle.kts Normal file
View file

@ -0,0 +1,21 @@
plugins {
application
}
repositories {
mavenCentral()
}
dependencies {
implementation(project(":lib"))
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(24)
}
}
application {
mainClass = "demo.Main"
}