gewuyou 096d3f11ab feat(llmhub-base): 初始化基础,设置依赖版本
- 创建.git模块

- 添加项目构建配置文件attributes、.gitignore等项目配置文件
- 初始化IntelliJ IDEA项目设置
- 添加Spring Boot应用配置
- 设置Gradle构建脚本
2025-04-24 18:53:23 +08:00

11 lines
261 B
Plaintext

dependencies {
}
/**
* 由于 Kotlin 插件被引入时会自动添加依赖,但根项目不需要 Kotlin 依赖,因此需要排除 Kotlin 依赖
*/
configurations.implementation {
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib")
}