https://github.com/jenkinsci/build-timestamp-plugin
Adding BUILD_TIMESTAMP to env variables of the build. Supports Daylight Saving Time.
https://github.com/jenkinsci/build-timestamp-plugin
adopt-this-plugin
Last synced: 5 months ago
JSON representation
Adding BUILD_TIMESTAMP to env variables of the build. Supports Daylight Saving Time.
- Host: GitHub
- URL: https://github.com/jenkinsci/build-timestamp-plugin
- Owner: jenkinsci
- License: mit
- Created: 2015-12-22T22:53:06.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2026-01-14T20:24:08.000Z (5 months ago)
- Last Synced: 2026-01-15T00:44:20.406Z (5 months ago)
- Topics: adopt-this-plugin
- Language: Java
- Homepage: https://plugins.jenkins.io/build-timestamp/
- Size: 156 KB
- Stars: 1
- Watchers: 98
- Forks: 18
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Build Timestamp Plugin
Adding `BUILD_TIMESTAMP` to Jenkins env vars,
## Daylight Saving Time
DST is not enabled by default.
If your location uses DST, you can enable it by setting the `timezone`
to the correct `city` such as `America/New_York`.
Set the timezone to corresponding city, such as `America/New_York` to display Daylight Saving Time format when Daylight Saving Time is enabled.
## More vars and formats
Add more var names and formats if you need.
## Optional date/time shift
For additional variables you can define shift (days, hours, minutes) which will be added to build timestamp.
This allows to run build plan with previous day specified as parameter.
Export build timestamps to build env variables.
# Configure
`BUILD_TIMESTAMP` exported by default, and you can add more variables
with different format patterns in Global Configure page.

# Using timestamps in Maven/Gradle/Shell
They are available in Maven build and Gradle build as built-in
properties/variables as well.
Maven:
As defined property in pom, equals to
```
System.getProperty('BUILD_TIMESTAMP')
```
Gradle:
```
System.getenv('BUILD_TIMESTAMP')
```
Shell:
```
"$BUILD_TIMESTAMP"
```
## Contributing
Refer to our [contribution guidelines](https://github.com/jenkinsci/.github/blob/master/CONTRIBUTING.md).
## LICENSE
Licensed under MIT, see [LICENSE](LICENSE.md).