18 lines
553 B
Kotlin
18 lines
553 B
Kotlin
plugins {
|
|
id("org.springframework.boot") version "3.5.5"
|
|
id("io.spring.dependency-management") version "1.1.7"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":codiki-domain"))
|
|
implementation(project(":codiki-application"))
|
|
implementation(project(":codiki-infrastructure"))
|
|
implementation(project(":codiki-exposition"))
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("org.springframework.boot:spring-boot-devtools")
|
|
}
|
|
|
|
springBoot {
|
|
mainClass = "org.codiki.launcher.ApplicationLauncher"
|
|
}
|