feat(project): initialize Spring Boot weblog project with Gradle modules
This commit is contained in:
19
weblog-web/build.gradle.kts
Normal file
19
weblog-web/build.gradle.kts
Normal file
@@ -0,0 +1,19 @@
|
||||
plugins {
|
||||
id("org.springframework.boot")
|
||||
id("io.spring.dependency-management")
|
||||
java
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
// Spring Boot Web(示例)
|
||||
implementation("org.springframework.boot:spring-boot-starter-web")
|
||||
|
||||
|
||||
// Test
|
||||
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||||
|
||||
// 其他依赖…
|
||||
implementation(project(":weblog-module-common"))
|
||||
implementation(project(":weblog-module-admin"))
|
||||
}
|
||||
Reference in New Issue
Block a user