Configure Kotlin compilation JVM target by convention

Closes gh-29952
This commit is contained in:
Andy Wilkinson
2022-02-22 18:11:51 +00:00
parent 49337f30da
commit 1e8d29f7aa
3 changed files with 3 additions and 25 deletions

View File

@@ -6,18 +6,6 @@ plugins {
description = "Spring Boot WebFlux coroutines smoke test"
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux"))
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")