Update kotlin -> 1.4.20 & java -> 15

This commit is contained in:
2020-11-29 21:52:42 +01:00
parent 8997433974
commit 69e50b158f
5 changed files with 10 additions and 10 deletions
@@ -16,8 +16,8 @@ group = "be.simplenotes"
version = "1.0-SNAPSHOT"
java {
sourceCompatibility = JavaVersion.VERSION_14
targetCompatibility = JavaVersion.VERSION_14
sourceCompatibility = JavaVersion.VERSION_15
targetCompatibility = JavaVersion.VERSION_15
}
tasks.withType<JavaCompile> {
@@ -8,12 +8,12 @@ plugins {
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.4.10"))
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.4.20"))
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "14"
jvmTarget = "15"
javaParameters = true
freeCompilerArgs = listOf(
"-Xinline-classes",