{"id":22508100,"url":"https://github.com/aminbhst/quartz-auto-config-boot","last_synced_at":"2025-08-03T13:30:49.797Z","repository":{"id":44408452,"uuid":"512503109","full_name":"AminBhst/quartz-auto-config-boot","owner":"AminBhst","description":"Get started with Quartz scheduler in Spring Boot using a single annotation","archived":false,"fork":false,"pushed_at":"2023-01-10T15:56:50.000Z","size":30,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-07T01:18:05.642Z","etag":null,"topics":["quartz","quartz-scheduler","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AminBhst.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-10T17:56:44.000Z","updated_at":"2024-04-13T18:32:25.000Z","dependencies_parsed_at":"2023-02-08T19:15:16.716Z","dependency_job_id":null,"html_url":"https://github.com/AminBhst/quartz-auto-config-boot","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AminBhst%2Fquartz-auto-config-boot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AminBhst%2Fquartz-auto-config-boot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AminBhst%2Fquartz-auto-config-boot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AminBhst%2Fquartz-auto-config-boot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AminBhst","download_url":"https://codeload.github.com/AminBhst/quartz-auto-config-boot/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228544905,"owners_count":17934655,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["quartz","quartz-scheduler","spring-boot"],"created_at":"2024-12-07T01:18:11.559Z","updated_at":"2024-12-07T01:18:12.245Z","avatar_url":"https://github.com/AminBhst.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![license](https://img.shields.io/github/license/aminbhst/quartz-autoconfig-boot)](https://github.com/AminBhst/quartz-autoconfig-boot/blob/main/LICENSE.md)\n[![release](https://img.shields.io/github/v/release/aminbhst/quartz-auto-config-boot)](https://github.com/aminbhst/quartz-auto-config-boot/releases)\n\n## Usage Guide\n\n#### Annotate your SpringBootApplication Class with `@EnableQuartzConfiguration`\n\n```java\n\n@SpringBootApplication\n@EnableQuartzConfiguration\npublic class TestApplication {\n\n    public static void main(String[] args) {\n        SpringApplication.run(TestApplication.class, args);\n    }\n}\n```\n\n#### Annotate your job classes with `@QuartzJob` and provide either the `cron` or the `repeatInterval` property\n\n```java\n\n@QuartzJob(cron = \"0 0/1 * * * ?\")\npublic class TestJob implements Job {\n\n    @Override\n    public void execute(JobExecutionContext jobExecutionContext) {\n        System.out.println(\"Running Job every minute\");\n    }\n}\n```\n\n## Get Quartz Auto Config Boot\n\n#### You can add Quartz AutoConfig to your project as a maven dependency\n\n#### It is distributed through [Maven Central](https://search.maven.org/artifact/io.github.aminbhst/quartz-auto-config-boot)\n\n### Apache Maven\n\n```xml\n\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.aminbhst\u003c/groupId\u003e\n    \u003cartifactId\u003equartz-auto-config-boot\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0\u003c/version\u003e\n    \u003cscope\u003ecompile\u003c/scope\u003e\n\u003c/dependency\u003e\n``` \n\n### Gradle\n\n```groovy\ndependencies {\n    compileOnly 'io.github.aminbhst:quartz-auto-config-boot:1.0.0'\n    annotationProcessor 'io.github.aminbhst:quartz-auto-config-boot:1.0.0'\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faminbhst%2Fquartz-auto-config-boot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faminbhst%2Fquartz-auto-config-boot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faminbhst%2Fquartz-auto-config-boot/lists"}