plugins { kotlin("jvm") id("org.springframework.boot") version "3.5.7" id("io.spring.dependency-management") version "1.1.7" } dependencies { implementation(kotlin("stdlib")) implementation(kotlin("reflect")) implementation(project(":imagora-domain")) implementation(project(":imagora-application")) implementation(project(":imagora-infrastructure")) implementation(project(":imagora-exposition")) implementation("org.springframework.boot:spring-boot-starter-web") implementation("org.springframework.boot:spring-boot-devtools") } springBoot { mainClass = "org.takiguchi.imagora.launcher.ApplicationLauncherKt" }