fuck you java

This commit is contained in:
rattatwinko
2025-05-25 14:39:18 +02:00
parent 8c59e57711
commit 91b204f07e
3 changed files with 22 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
plugins {
id("application")
id("java")
kotlin("jvm") version "1.9.22"
}
group = "org.jdetect"
@@ -17,4 +19,16 @@ dependencies {
tasks.test {
useJUnitPlatform()
}
}
sourceSets {
main {
resources {
srcDir("src/main/resources")
}
}
}
application {
mainClass.set("org.jdetect.MainApp")
}