Skip to content

Commit

Permalink
Update Kotlin to 1.8.21
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedre committed May 21, 2023
1 parent 56c3c0f commit 805ce3d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion adhan/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.jetbrains.kotlin.gradle.targets.js.testing.KotlinJsTest

plugins {
kotlin("multiplatform")
kotlin("plugin.serialization") version "1.8.20"
kotlin("plugin.serialization") version "1.8.21"
id("maven-publish")
id("signing")
}
Expand Down Expand Up @@ -192,3 +192,8 @@ publishing {
signing {
sign(publishing.publications)
}

// TODO: remove after https://youtrack.jetbrains.com/issue/KT-46466 is fixed
project.tasks.withType(AbstractPublishToMaven::class.java).configureEach {
dependsOn(project.tasks.withType(Sign::class.java))
}
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
}

dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21")
}
}

Expand Down

0 comments on commit 805ce3d

Please sign in to comment.