Skip to content

Commit

Permalink
Bump JVM and Kotlin to 16 and 1.5.20 respectfully
Browse files Browse the repository at this point in the history
  • Loading branch information
JPDSousa committed Jul 22, 2021
1 parent 9c04614 commit a873633
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
plugins {
kotlin("jvm") version "1.4.10"
kotlin("plugin.serialization") version "1.4.10"
kotlin("jvm") version "1.5.20"
kotlin("plugin.serialization") version "1.5.20"
}

repositories {
mavenCentral()
}

dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("commons-io:commons-io:2.8.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0-M1")
implementation("io.github.microutils:kotlin-logging:2.0.3")
Expand All @@ -22,10 +21,10 @@ dependencies {

tasks {
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "16"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "16"
}
}

Expand Down

0 comments on commit a873633

Please sign in to comment.