Merge branch '2.7.x'

pull/29983/head
Andy Wilkinson 3 years ago
commit 132bf686f8

@ -31,6 +31,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile;
* <li>{@link KotlinCompile} tasks are configured to:
* <ul>
* <li>Use {@code apiVersion} and {@code languageVersion} 1.3.
* <li>Use {@code jvmTarget} 1.8.
* <li>Treat all warnings as errors
* <li>Suppress version warnings
* </ul>

@ -178,18 +178,6 @@ sourceSets {
}
}
compileKotlin {
kotlinOptions {
jvmTarget = 1.8
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = 1.8
}
}
test {
jvmArgs += "--add-opens=java.base/java.net=ALL-UNNAMED"
}

@ -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")

Loading…
Cancel
Save