https://github.com/ThreeTen/threeten-extra
Provides additional date-time classes that complement those in JDK 8
https://github.com/ThreeTen/threeten-extra
Last synced: about 1 month ago
JSON representation
Provides additional date-time classes that complement those in JDK 8
- Host: GitHub
- URL: https://github.com/ThreeTen/threeten-extra
- Owner: ThreeTen
- License: bsd-3-clause
- Created: 2012-11-18T01:01:13.000Z (over 12 years ago)
- Default Branch: main
- Last Pushed: 2024-07-15T02:26:46.000Z (9 months ago)
- Last Synced: 2024-11-17T12:56:24.579Z (5 months ago)
- Language: Java
- Homepage: http://www.threeten.org/threeten-extra/
- Size: 2.04 MB
- Stars: 397
- Watchers: 29
- Forks: 77
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
- Security: .github/SECURITY.md
Awesome Lists containing this project
- awesome-java - ThreeTen-Extra - Additional date-time classes that complement those in JDK 8. (Projects / Date and Time)
- awesome-java-zh - ThreeTen-Extra - 补充JDK 8中的日期时间类。 (项目 / 日期和时间)
- awesome-java - ThreeTen-Extra - Additional date-time classes that complement those in JDK 8. (Projects / Date and Time)
README
ThreeTen-Extra
==============ThreeTen-Extra provides additional date-time classes that complement those in JDK 8.
Not every piece of date/time logic is destined for the JDK.
Some concepts are too specialized or too bulky to make it in.
This project provides some of those additional classes as a well-tested and reliable jar.### Documentation
Various documentation is available:* The [home page](https://www.threeten.org/threeten-extra/)
* The [user guide](https://www.threeten.org/threeten-extra/userguide.html)
* The [Javadoc](https://www.threeten.org/threeten-extra/apidocs/org.threeten.extra/module-summary.html)### Releases
Release 1.8.0 is the current release.
This release is considered stable and worthy of the 1.x tag as per [SemVer](https://semver.org/spec/v2.0.0.html).ThreeTen-Extra requires Java SE 8 or later and has no dependencies.
Available in the [Maven Central repository](https://search.maven.org/search?q=g:org.threeten%20AND%20a:threeten-extra&core=gav)
```
org.threeten
threeten-extra
1.8.0```

### Support
Please use [Stack Overflow](https://stackoverflow.com/search?q=threeten-extra) for general usage questions.
GitHub [issues](https://github.com/ThreeTen/threeten-extra/issues) and [pull requests](https://github.com/ThreeTen/threeten-extra/pulls)
should be used when you want to help advance the project.
Commercial support is available via the
[Tidelift subscription](https://tidelift.com/subscription/pkg/maven-org-threeten-threeten-extra?utm_source=maven-org-threeten-threeten-extra&utm_medium=referral&utm_campaign=readme).To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security).
Tidelift will coordinate the fix and disclosure.### Release process
* Update version (README.md, index.md, changes.xml)
* Commit and push
* Run `mvn clean release:clean release:prepare release:perform` on Java 11
* Website will be built and released by GitHub Actions