Skip to content

Commit

Permalink
Player around with JVM versions
Browse files Browse the repository at this point in the history
  • Loading branch information
deusaquilus committed Sep 11, 2024
1 parent 4534a30 commit b8d5f9f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions terpal-sql-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}

Expand Down
5 changes: 3 additions & 2 deletions terpal-sql-core-testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ plugins {
}

kotlin {
// add java targets so this can be resused for android etc... the `nativebuild` plugin will provide the others
// Add java targets so this can be resused for android etc... the `nativebuild` plugin will provide the others
// This needs to be compiled with at least JDK17 to support the android build.
jvm {
jvmToolchain(11)
jvmToolchain(17)
}

java {
Expand Down

0 comments on commit b8d5f9f

Please sign in to comment.