- 创建项目基本结构和配置 - 添加 Jib 插件支持镜像构建 - 配置 Spring Boot 和 Spring Cloud 依赖 - 设置 Nacos 服务发现 - 添加阿里云 DashScope 配置
10 lines
260 B
Plaintext
10 lines
260 B
Plaintext
dependencies {
|
|
|
|
}
|
|
/**
|
|
* 由于 Kotlin 插件被引入时会自动添加依赖,但根项目不需要 Kotlin 依赖,因此需要排除 Kotlin 依赖
|
|
*/
|
|
configurations.implementation {
|
|
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib")
|
|
}
|