Added classes from old Cauldron (NON TESTED / BROKEN!)

This commit is contained in:
2026-06-16 19:59:48 +02:00
parent b8bf70a178
commit 5b62bd8d12
100 changed files with 6910 additions and 2 deletions
+15 -2
View File
@@ -12,6 +12,7 @@ if (version == "UNSET" && gradle.startParameter.taskNames.any { it.startsWith("p
application {
mainClass.set("com.r35157.nenjim.hubd.impl.ref.Main")
applicationDefaultJvmArgs = listOf("--enable-preview")
}
repositories {
@@ -43,9 +44,13 @@ dependencies {
runtimeOnly("org.apache.logging.log4j:log4j-core:2.26.0")
runtimeOnly("org.apache.logging.log4j:log4j-slf4j2-impl:2.26.0")
implementation("org.slf4j:slf4j-api:2.0.18")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.2")
implementation("com.fazecast:jSerialComm:2.11.4")
implementation("com.google.code.gson:gson:2.14.0")
implementation("commons-codec:commons-codec:1.22.0")
implementation("org.apache.commons:commons-collections4:4.5.0")
implementation("org.apache.commons:commons-lang3:3.20.0")
implementation("org.slf4j:slf4j-api:2.0.18")
}
java {
@@ -54,7 +59,15 @@ java {
tasks.withType<JavaCompile>().configureEach {
options.release.set(25)
options.compilerArgs.addAll(listOf("-Xmaxerrs", "1"))
options.compilerArgs.addAll(
listOf(
"--enable-preview",
//"-Xlint:deprecation",
//"-Xlint:unchecked",
"-Xmaxerrs", "1"
)
)
}
val generatedDetagMain = layout.buildDirectory.dir("generated/sources/detag/main/java")