Skip to content

Commit

Permalink
Merge pull request #57 from batoulapps/update_kotlin_1_8_21
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedre authored May 29, 2023
2 parents 59ed1f2 + 805ce3d commit f6238ce
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 f6238ce

Please sign in to comment.