feat: initialize Gradle multi-module backend and Vite frontend

This commit is contained in:
2026-08-06 17:17:44 +08:00
commit 2cf32d0768
52 changed files with 2970 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
plugins {
kotlin("jvm") version "2.4.10" apply false
kotlin("plugin.spring") version "2.4.10" apply false
id("org.springframework.boot") version "4.1.0" apply false
id("io.spring.dependency-management") version "1.1.7" apply false
}
subprojects {
group = "com.msksbr.imSystem"
version = "0.1.0-SNAPSHOT"
}