Skip to content

Commit

Permalink
Merge pull request #232 from newrelic/reproducible-build
Browse files Browse the repository at this point in the history
Reproducible build
  • Loading branch information
jasonjkeller committed Mar 4, 2021
2 parents 860de3b + 9581178 commit 7a28fd9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions instrumentation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ subprojects {
task.enabled = !project.hasProperty('noInstrumentation')
}

tasks.withType(AbstractArchiveTask) {
preserveFileTimestamps = false
reproducibleFileOrder = true
}

jar {
manifest {
attributes 'Implementation-Vendor': 'New Relic', 'Implementation-Version': project.version
Expand Down

0 comments on commit 7a28fd9

Please sign in to comment.