Initial commit.
This commit is contained in:
20
imagora-launcher/build.gradle.kts
Normal file
20
imagora-launcher/build.gradle.kts
Normal file
@@ -0,0 +1,20 @@
|
||||
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"
|
||||
}
|
||||
Reference in New Issue
Block a user