initial commit

This commit is contained in:
2025-11-26 18:58:15 +08:00
commit 3ec494ca69
168 changed files with 16142 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
plugins {
id("java-library")
alias(libs.plugins.kotlin.jvm)
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlin {
compilerOptions {
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17
}
}
dependencies {
implementation(project(":math"))
}