about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/gradle/init-build.gradle
blob: 3c3ee8162449563a3b9f4d3d918918bd4e32b374 (plain) (blame)
1
2
3
4
5
6
7
8
gradle.projectsLoaded {
  rootProject.allprojects {
    tasks.withType(AbstractArchiveTask) {
        preserveFileTimestamps = false
        reproducibleFileOrder = true
    }
  }
}