mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Make build reproducible
This commit is contained in:
parent
bf1c159477
commit
45c4d16a0c
@ -1,6 +1,7 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'jacoco'
|
||||
id 'bisq.reproducible-build'
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
@ -0,0 +1,4 @@
|
||||
tasks.withType(AbstractArchiveTask).configureEach {
|
||||
preserveFileTimestamps = false
|
||||
reproducibleFileOrder = true
|
||||
}
|
@ -18,11 +18,6 @@ javafx {
|
||||
|
||||
mainClassName = 'bisq.desktop.app.BisqAppMain'
|
||||
|
||||
jar {
|
||||
preserveFileTimestamps = false
|
||||
reproducibleFileOrder = true
|
||||
}
|
||||
|
||||
sourceSets.main.resources.srcDirs += ['src/main/java'] // to copy fxml and css files
|
||||
|
||||
dependencies {
|
||||
|
Loading…
Reference in New Issue
Block a user