create PackageManifest.kt and get test working

This commit is contained in:
2025-07-30 03:15:37 -05:00
parent 0baf6b876b
commit c14a7be42a
21 changed files with 361 additions and 70 deletions

20
gui/build.gradle.kts Normal file
View File

@@ -0,0 +1,20 @@
plugins {
kotlin("jvm")
}
repositories {
mavenCentral()
}
dependencies {
implementation(project(":api"))
implementation(project(":cli"))
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}