We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ed94e0 commit d37065aCopy full SHA for d37065a
gradle/build-logic/src/main/kotlin/publish.gradle.kts
@@ -48,6 +48,12 @@ signing {
48
}
49
50
51
+// https://youtrack.jetbrains.com/issue/KT-46466
52
+val signingTasks = tasks.withType<Sign>()
53
+tasks.withType<AbstractPublishToMaven>().configureEach {
54
+ dependsOn(signingTasks)
55
+}
56
+
57
tasks.withType<AbstractArchiveTask>().configureEach {
58
isPreserveFileTimestamps = false
59
isReproducibleFileOrder = true
0 commit comments