Skip to content

Commit

Permalink
chore: Update jvmTarget to 11
Browse files Browse the repository at this point in the history
  • Loading branch information
turtton committed Jun 4, 2023
1 parent e4b3b99 commit 56e51c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
java-version: 11

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
Expand Down
5 changes: 1 addition & 4 deletions kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinJsCompilation
import org.jetbrains.kotlin.library.impl.buildKotlinLibrary

plugins {
kotlin("multiplatform") version "1.8.21"
kotlin("plugin.serialization") version "1.8.21"
Expand All @@ -19,7 +16,7 @@ kotlin {
jvm {
compilations {
all {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "11"
}
}
}
Expand Down

0 comments on commit 56e51c8

Please sign in to comment.