Skip to content

Commit

Permalink
Fix build.gradle files
Browse files Browse the repository at this point in the history
  • Loading branch information
CherryPerry committed Mar 11, 2024
1 parent 072eeff commit 46b558c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmarks/jmh/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
}

kotlin {
jvmToolchain(11)
jvmToolchain(17)
}

jmh {
Expand Down
2 changes: 1 addition & 1 deletion rxjava2-interop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ compileKotlin {
}

compileJava {
targetCompatibility(JavaVersion.VERSION_1_8)
targetCompatibility = JavaVersion.VERSION_1_8
}

publishing {
Expand Down
2 changes: 1 addition & 1 deletion rxjava3-interop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ compileKotlin {
}

compileJava {
targetCompatibility(JavaVersion.VERSION_1_8)
targetCompatibility = JavaVersion.VERSION_1_8
}

publishing {
Expand Down

0 comments on commit 46b558c

Please sign in to comment.