Add Spring boot with Rest controller
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
plugins {
|
||||
kotlin("jvm") version "2.0.0"
|
||||
kotlin("plugin.spring") version "1.9.22"
|
||||
id("org.springframework.boot") version "3.1.0"
|
||||
id("io.spring.dependency-management") version "1.1.0"
|
||||
}
|
||||
|
||||
group = "org.example"
|
||||
@@ -10,6 +13,8 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.springframework.boot:spring-boot-starter-web")
|
||||
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||||
testImplementation(kotlin("test"))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user