feat: update

This commit is contained in:
2025-12-09 00:06:27 -08:00
parent 8253a49cd0
commit bcd611a03e
5 changed files with 30 additions and 1 deletions

17
common/build.gradle.kts Normal file
View File

@@ -0,0 +1,17 @@
plugins {
`java-library`
}
repositories {
mavenCentral()
}
dependencies {
implementation("com.google.code.gson:gson:2.10.1")
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}