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 1ea3244 commit 4ada82eCopy full SHA for 4ada82e
buildSrc/src/main/kotlin/buildsrc/convention/base.gradle.kts
@@ -15,6 +15,12 @@ if (project != rootProject) {
15
16
extensions.create<KxsTsGenBuildSettings>(KxsTsGenBuildSettings.NAME)
17
18
+tasks.withType<AbstractArchiveTask>().configureEach {
19
+ // https://docs.gradle.org/current/userguide/working_with_files.html#sec:reproducible_archives
20
+ isPreserveFileTimestamps = false
21
+ isReproducibleFileOrder = true
22
+}
23
+
24
tasks.withType<Test>().configureEach {
25
timeout.set(Duration.ofMinutes(10))
26
0 commit comments