Skip to content

Commit

Permalink
trying to apply a fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oshai committed Apr 14, 2024
1 parent e1a22e0 commit a10243c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ kotlin {
val linuxTargets = listOf(
linuxArm64(),
linuxX64(),
mingwX64()
mingwX64(),
androidNativeX64(),
androidNativeX86(),
androidNativeArm64(),
androidNativeArm32(),
)
val darwinTargets = listOf(
macosArm64(),
Expand Down Expand Up @@ -335,3 +339,11 @@ tasks {
distributionType = Wrapper.DistributionType.ALL
}
}

//region Fix Gradle warning about signing tasks using publishing task outputs without explicit dependencies
// https://github.com/gradle/gradle/issues/26091
tasks.withType<AbstractPublishToMaven>().configureEach {
val signingTasks = tasks.withType<Sign>()
mustRunAfter(signingTasks)
}
//endregion

0 comments on commit a10243c

Please sign in to comment.