Skip to content

Commit

Permalink
Workaround signing task dependency issue
Browse files Browse the repository at this point in the history
  • Loading branch information
erikc5000 committed Jan 8, 2024
1 parent 035d011 commit e3d6b8e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,11 @@ publishing {
}
}

tasks.withType<AbstractPublishToMaven>().configureEach {
val signingTasks = tasks.withType<Sign>()
mustRunAfter(signingTasks)
}

tasks.withType<KotlinJvmCompile>().configureEach {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_11)
Expand Down

0 comments on commit e3d6b8e

Please sign in to comment.