16 lines
438 B
Plaintext
16 lines
438 B
Plaintext
val mapstructVersion: String by project
|
|
|
|
plugins {
|
|
kotlin("kapt")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
|
|
implementation(project(":model"))
|
|
implementation(project(":ports-incoming"))
|
|
|
|
implementation("org.mapstruct:mapstruct:$mapstructVersion")
|
|
kapt("org.mapstruct:mapstruct-processor:$mapstructVersion")
|
|
} |