- 创建.git模块 - 添加项目构建配置文件attributes、.gitignore等项目配置文件 - 初始化IntelliJ IDEA项目设置 - 添加Spring Boot应用配置 - 设置Gradle构建脚本
11 lines
261 B
Plaintext
11 lines
261 B
Plaintext
|
|
dependencies {
|
|
|
|
}
|
|
/**
|
|
* 由于 Kotlin 插件被引入时会自动添加依赖,但根项目不需要 Kotlin 依赖,因此需要排除 Kotlin 依赖
|
|
*/
|
|
configurations.implementation {
|
|
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib")
|
|
}
|