Skip to content

Commit

Permalink
отказ jvm11
Browse files Browse the repository at this point in the history
theshadowco committed Jun 29, 2021
1 parent 2397aee commit f87b81f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -21,6 +21,7 @@ val junitVersion = "5.6.1"

dependencies {
compileOnly(gradleApi())
implementation(kotlin("stdlib-jdk8"))
implementation("commons-io", "commons-io", "2.6")

testImplementation("org.junit.jupiter", "junit-jupiter-api", junitVersion)
@@ -30,10 +31,10 @@ dependencies {

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

0 comments on commit f87b81f

Please sign in to comment.