Skip to content

Commit

Permalink
Merge pull request #540 from kilink/jdk8-fix
Browse files Browse the repository at this point in the history
Fix class file compatibility issue with mockk-agent-jvm
  • Loading branch information
Raibaz committed Dec 1, 2020
2 parents a9733ed + 4b7f45a commit 0edbe85
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gradle/jvm-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ apply plugin: 'java'
apply plugin: 'kotlin-platform-jvm'
apply plugin: 'org.jetbrains.dokka'

sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies {
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testImplementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
Expand All @@ -37,4 +40,4 @@ afterEvaluate {
archiveClassifier.set('javadoc')
from "$buildDir/javadoc"
}
}
}

0 comments on commit 0edbe85

Please sign in to comment.