16 lines
328 B
Kotlin
16 lines
328 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("org.springframework.boot")
|
|
id("io.spring.dependency-management")
|
|
id("java")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
}
|
|
|
|
springBoot {
|
|
mainClass = "com.example.demo.launcher.ApplicationLauncher"
|
|
}
|