Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelklishin/quartzite
Quarzite is a thin idiomatic Clojure layer on top the Quartz Scheduler
https://github.com/michaelklishin/quartzite
clojure clojurewerkz quartz quartz-scheduler scheduler scheduling
Last synced: 5 days ago
JSON representation
Quarzite is a thin idiomatic Clojure layer on top the Quartz Scheduler
- Host: GitHub
- URL: https://github.com/michaelklishin/quartzite
- Owner: michaelklishin
- Created: 2011-12-18T19:42:39.000Z (about 13 years ago)
- Default Branch: main
- Last Pushed: 2023-12-05T23:57:02.000Z (about 1 year ago)
- Last Synced: 2025-01-21T20:03:55.242Z (13 days ago)
- Topics: clojure, clojurewerkz, quartz, quartz-scheduler, scheduler, scheduling
- Language: Clojure
- Homepage:
- Size: 280 KB
- Stars: 222
- Watchers: 13
- Forks: 34
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
Awesome Lists containing this project
README
# Quartzite, a thin Clojure layer on top the Quartz Scheduler
Quartzite is a powerful Clojure scheduling library built on top the [Quartz Scheduler](http://quartz-scheduler.org/).
## Project goals
* Support all commonly used Quartz features but follow the 80/20 rule
* Be (reasonably) idiomatic but easy to understand for people familiar with Quartz
* Be [well documented](doc/guides/README.md)
* Be [well tested](https://github.com/michaelklishin/quartzite/tree/master/test/clojurewerkz/quartzite/test)
* Integrate with libraries like JodaTime where appropriate, like [Monger, a modern Clojure MongoDB client](https://github.com/michaelklishin/monger) does
* Not a half-assed effort: libraries should be well maintained and test-driven or not be open sourced in the first place## Project Maturity
Quartzite is past `2.0`. We consider it to be stable
and reasonably mature. Quartz Scheduler is a very mature project.API changes generally follow semantic versioning and are driven by the user
feedback.## Supported Clojure Versions
Quartzite requires Clojure 1.6 or later. The most recent release is always
recommended.## Maven Artifacts
### The Most Recent Release
Quartzite artifacts are [released to Clojars](https://clojars.org/clojurewerkz/quartzite). If you are using Maven, add the following repository
definition to your `pom.xml`:```xml
clojars.org
http://clojars.org/repo```
### The Most Recent Version
With Leiningen:
[![Clojars Project](http://clojars.org/clojurewerkz/quartzite/latest-version.svg)](http://clojars.org/clojurewerkz/quartzite)
With Maven:
clojurewerkz
quartzite
2.1.0
## Getting Started, Documentation
Please refer to the [Getting Started with Clojure and Quartz](./doc/guides/getting_started.md).
[Quartzite documentation guides](./doc/guides) are not fully complete but cover most of the functionality.Quality [Clojure documentation](http://clojure-doc.org) is available elsewhere.
## Community
[Quartzite has a mailing list](https://groups.google.com/group/clojure-quartz). Feel free to join it and ask any questions you may have.
To subscribe for announcements of releases, important changes and so on, please follow [@ClojureWerkz](https://twitter.com/#!/clojurewerkz) on Twitter.
## Quartzite Is a ClojureWerkz Project
Quartzite is part of the [group of Clojure libraries known as ClojureWerkz](http://clojurewerkz.org).
## Continuous Integration
[![Continuous Integration status](https://secure.travis-ci.org/michaelklishin/quartzite.png)](http://travis-ci.org/michaelklishin/quartzite)
CI is hosted by [travis-ci.org](http://travis-ci.org)
## Development
Quartzite uses [Leiningen 2](https://github.com/technomancy/leiningen/blob/master/doc/TUTORIAL.md). Make
sure you have it installed and then run tests against all supported Clojure versions usinglein all test
Then create a branch and make your changes on it. Once you are done with your changes and all
tests pass, submit a pull request on Github.## License
Copyright (C) 2011-2023 Michael S. Klishin, Alex Petrov, the ClojureWerkz team and contributors.
Distributed under the Eclipse Public License, the same as Clojure.