fitapp/adapter-incoming-rest/build.gradle.kts

16 lines
438 B
Plaintext
Raw Permalink Normal View History

2020-07-24 00:02:00 +00:00
val mapstructVersion: String by project
plugins {
kotlin("kapt")
}
2020-07-23 23:25:41 +00:00
dependencies {
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation(project(":model"))
implementation(project(":ports-incoming"))
2020-07-24 00:02:00 +00:00
implementation("org.mapstruct:mapstruct:$mapstructVersion")
kapt("org.mapstruct:mapstruct-processor:$mapstructVersion")
2020-07-23 23:25:41 +00:00
}