Skip to content

Commit

Permalink
Compile ktor library instrumentation for earlier kotlin version (#9661)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit authored Oct 12, 2023
1 parent 9a1c178 commit b0282eb
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions instrumentation/ktor/ktor-1.0/library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,10 @@ tasks {
jvmTarget = "1.8"
}
}

compileKotlin {
kotlinOptions {
languageVersion = "1.4"
}
}
}
6 changes: 6 additions & 0 deletions instrumentation/ktor/ktor-2.0/library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,10 @@ tasks {
jvmTarget = "1.8"
}
}

compileKotlin {
kotlinOptions {
languageVersion = "1.6"
}
}
}
6 changes: 6 additions & 0 deletions instrumentation/ktor/ktor-common/library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ tasks {
jvmTarget = "1.8"
}
}

compileKotlin {
kotlinOptions {
languageVersion = "1.4"
}
}
}

0 comments on commit b0282eb

Please sign in to comment.