plugins { kotlin("jvm") id("org.springframework.boot") version "3.4.3" id("io.spring.dependency-management") version "1.1.7" id("java") } dependencies { implementation(kotlin("stdlib")) implementation(project(":demo-domain")) implementation(project(":demo-application")) implementation(project(":demo-infrastructure")) implementation(project(":demo-exposition")) implementation("org.springframework.boot:spring-boot-starter-web") } springBoot { mainClass = "com.example.demo.launcher.ApplicationLauncherKt" }