We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2397aee commit f87b81fCopy full SHA for f87b81f
1 file changed
build.gradle.kts
@@ -21,6 +21,7 @@ val junitVersion = "5.6.1"
21
22
dependencies {
23
compileOnly(gradleApi())
24
+ implementation(kotlin("stdlib-jdk8"))
25
implementation("commons-io", "commons-io", "2.6")
26
27
testImplementation("org.junit.jupiter", "junit-jupiter-api", junitVersion)
@@ -30,10 +31,10 @@ dependencies {
30
31
32
tasks {
33
compileKotlin {
- kotlinOptions.jvmTarget = "11"
34
+ kotlinOptions.jvmTarget = "1.8"
35
}
36
compileTestKotlin {
37
38
39
40
0 commit comments