Cron expression parser and evaluator. One version based on Joda-time, other on Java Time
Go to file
dependabot[bot] c16bcefc9a
Bump junit:junit from 4.12 to 4.13.1
Bumps [junit:junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1.
- [Release notes](https://github.com/junit-team/junit4/releases)
- [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.12.md)
- [Commits](https://github.com/junit-team/junit4/compare/r4.12...r4.13.1)

---
updated-dependencies:
- dependency-name: junit:junit
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-07-23 14:35:33 +00:00
src [Major] Code cleanup of warnings and typos 2020-05-02 16:06:30 +02:00
.gitattributes Publish to github 2014-05-30 10:34:35 +02:00
.gitignore [Major] Removed JodaTime implementation 2020-05-02 15:33:56 +02:00
LICENSE Create LICENSE 2017-03-01 19:35:41 +01:00
README.md [Major] Removed JodaTime implementation 2020-05-02 15:33:56 +02:00
pom.xml Bump junit:junit from 4.12 to 4.13.1 2023-07-23 14:35:33 +00:00

README.md

Fork from https://github.com/set-de/cron

cron

Cron expression parser and evaluator.

Allows for specifying cron - expressions (in Unix or Quartz like format) and evaluating when it will next match.

Usage

See javadoc

Change history and credits

version 1.5:

  • 2019-08-02: performance improvement when next time is further into the future (java8) by @n3world

version 1.4:

  • 2017-02-13: added support for java6 (supports android 4) by @adelnizamutdinov
  • 2016-09-11: rewritten to Java 8 DateTime by @zemiak

version 1.3:

  • 2015-09-23: added timezone to tests by @alf

version 1.2:

  • 2015-08-05: added protection for endless loop when looking up Feb 30th & optional seconds by @michaelknigge