Skip to content

Commit

Permalink
Update Kotlin to 1.9.23 and downgrade jdk version to 8
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedRejeb committed Apr 23, 2024
1 parent 5458a5f commit 01f3a61
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*.iml
.gradle
.kotlin
/local.properties
.idea
.DS_Store
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
group = "com.mohamedrejeb.ksoup"
version = "0.3.1"
version = "0.3.2"
}

nexusPublishing {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
kotlin = "1.9.22"
kotlin = "1.9.23"
kotlinx-kover = "0.7.4"

nexus-publish = "2.0.0-rc-1"
Expand Down
5 changes: 2 additions & 3 deletions ksoup-entities/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,13 @@ plugins {
kotlin {
applyDefaultHierarchyTemplate()
explicitApi()
jvmToolchain(8)

androidNativeArm32()
androidNativeArm64()
androidNativeX86()
androidNativeX64()
jvm {
jvmToolchain(11)
}
jvm()
js(IR).nodejs()
iosX64()
iosArm64()
Expand Down
6 changes: 2 additions & 4 deletions ksoup-html/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@ plugins {

kotlin {
applyDefaultHierarchyTemplate()

explicitApi()
jvmToolchain(8)

androidNativeArm32()
androidNativeArm64()
androidNativeX86()
androidNativeX64()
jvm {
jvmToolchain(11)
}
jvm()
js(IR).nodejs()
iosX64()
iosArm64()
Expand Down

0 comments on commit 01f3a61

Please sign in to comment.