Skip to content
This repository has been archived by the owner on May 4, 2021. It is now read-only.

Commit

Permalink
Problem: Timestamp in javadoc html files prevents change tracking
Browse files Browse the repository at this point in the history
Without this option all files are changed on every build

Solution: Add javadoc notimestamp option
  • Loading branch information
msteinhoff committed Dec 29, 2016
1 parent 1359c93 commit 01ba8b3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ tasks.withType(Jar) {
}
}

javadoc {
options.noTimestamp = true
}

task javadocJar(type: Jar) {
group BasePlugin.BUILD_GROUP
description 'Assemble a jar archive containing the javadoc files.'
Expand Down

0 comments on commit 01ba8b3

Please sign in to comment.