Skip to content

Commit

Permalink
Fix jvmTarget
Browse files Browse the repository at this point in the history
  • Loading branch information
BoD committed Dec 12, 2020
1 parent ead2df1 commit 08ec3b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 2.1.1 (2020-12-11)
## 2.2.0 (2020-12-12)
- Updated all dependencies to their latest version
- Use the new qonto.com domain instead of qonto.eu
- Reflect API changes (a few new fields and objects)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ allprojects {
}

group = "org.jraf"
version = "2.1.1"
version = "2.2.0"

// Show a report in the log when running tests
tasks.withType<Test> {
Expand Down
11 changes: 5 additions & 6 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("multiplatform")
kotlin("plugin.serialization") version Versions.KOTLIN_SERIALIZATION
Expand Down Expand Up @@ -166,11 +168,8 @@ android {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}

// extensions.configure<KotlinJvmOptions>("kotlinOptions") {
// jvmTarget = JavaVersion.VERSION_1_8.toString()
// }
// extensions.configure<KotlinJvmOptions>("kotlin") {
// jvmTarget = JavaVersion.VERSION_1_8.toString()
// }
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}

0 comments on commit 08ec3b2

Please sign in to comment.