Skip to content
This repository has been archived by the owner on Dec 7, 2020. It is now read-only.

Commit

Permalink
fix compatibility open-telemetry#2
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Muskalla committed Nov 27, 2020
1 parent 7381de8 commit 2333223
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions instrumentation/rmi/rmi.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ java {

tasks.withType(JavaCompile) {
options.release = null
sourceCompatibility = JavaVersion.toVersion(project.ext.release)
targetCompatibility = JavaVersion.toVersion(project.ext.release)
}
tasks.withType(GroovyCompile) {
options.release = null
sourceCompatibility = JavaVersion.toVersion(project.ext.release)
targetCompatibility = JavaVersion.toVersion(project.ext.release)
}

0 comments on commit 2333223

Please sign in to comment.