Skip to content

Commit

Permalink
turns out that you need to set it twice
Browse files Browse the repository at this point in the history
  • Loading branch information
nextgens committed Oct 14, 2017
1 parent 5ea3ad1 commit 86d6f1f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,15 @@ processResources.dependsOn compileVersion
task jar (type: Jar, overwrite: true) {
from (compileVersion) {
include 'freenet/node/Version**class'
preserveFileTimestamps = false
reproducibleFileOrder = true
}
from ("${buildDir}/classes/java/main/") {
exclude 'freenet/node/Version.class'
exclude 'freenet/node/Version$1.class'
preserveFileTimestamps = false
reproducibleFileOrder = true
}
preserveFileTimestamps = false
reproducibleFileOrder = true
duplicatesStrategy = "exclude"
archivesBaseName = "freenet"
manifest {
Expand Down

0 comments on commit 86d6f1f

Please sign in to comment.