From 822ebfcd5ba5b398d8d8c2f721fff03000dbed84 Mon Sep 17 00:00:00 2001 From: Jiri Kraml Date: Tue, 19 Dec 2023 15:14:40 +0100 Subject: [PATCH 1/3] MIC-000 add codeowners and dependabot --- .github/CODEOWNERS | 1 + .github/dependabot.yml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/dependabot.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..76e44e5 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @Staffbase/minecraft diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..34b8c66 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: + - package-ecosystem: "gradle" + directory: "/" + schedule: + interval: "daily" + time: "08:00" + timezone: "Europe/Berlin" + open-pull-requests-limit: 10 + labels: + - "gradle dependency" + ignore: + - dependency-name: "*" + update-types: [ "version-update:semver-patch" ] + reviewers: + - "@Staffbase/minecraft" + assignees: + - "@Staffbase/minecraft" From 0833a7d62351d11085a8be2655776ba0a4833c60 Mon Sep 17 00:00:00 2001 From: Jiri Kraml Date: Tue, 19 Dec 2023 15:18:16 +0100 Subject: [PATCH 2/3] MIC-000 fix GH groups --- .github/CODEOWNERS | 2 +- .github/dependabot.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 76e44e5..5537a5e 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @Staffbase/minecraft +* @Staffbase/minecraft-devs diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 34b8c66..fb40d83 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,6 +13,6 @@ updates: - dependency-name: "*" update-types: [ "version-update:semver-patch" ] reviewers: - - "@Staffbase/minecraft" + - "@Staffbase/minecraft-devs" assignees: - - "@Staffbase/minecraft" + - "@Staffbase/minecraft-devs" From 33c91748261a26381e553bc804dc3e4e7dbcbffe Mon Sep 17 00:00:00 2001 From: Jiri Kraml Date: Tue, 19 Dec 2023 15:41:33 +0100 Subject: [PATCH 3/3] MIC-000 remove outdated readme contents --- README.md | 70 ++----------------------------------------------------- 1 file changed, 2 insertions(+), 68 deletions(-) diff --git a/README.md b/README.md index c57e0a0..1ebcec6 100644 --- a/README.md +++ b/README.md @@ -1,70 +1,4 @@ -quartz-redis-jobstore +Fork of quartz-redis-jobstore ===================== -[![Build Status](https://secure.travis-ci.org/jlinn/quartz-redis-jobstore.png?branch=master)](http://travis-ci.org/jlinn/quartz-redis-jobstore) - -A [Quartz Scheduler](http://quartz-scheduler.org/) JobStore using [Redis](http://redis.io). - -This project was inspired by [redis-quartz](https://github.com/RedisLabs/redis-quartz), and provides similar functionality with some key differences: - -* Redis database and key prefix are configurable. -* Redis' [recommended distributed locking method](http://redis.io/topics/distlock) is used. -* All of the functionality of this library is covered by a [test suite](https://github.com/jlinn/quartz-redis-jobstore/tree/master/src/test/java/net/joelinn/quartz). - -## Requirements -* Java 7 or higher -* Redis 2.6.12 or higher (3.0 or higher for Redis cluster) - -## Installation -Maven dependency: -```xml - - net.joelinn - quartz-redis-jobstore - 1.2.0 - -``` - -## Configuration -The following properties may be set in your `quartz.properties` file: -``` -# set the scheduler's JobStore class (required) -org.quartz.jobStore.class = net.joelinn.quartz.jobstore.RedisJobStore - -# set the Redis host (required) -org.quartz.jobStore.host = - -# set the scheduler's trigger misfire threshold in milliseconds (optional, defaults to 60000) -org.quartz.jobStore.misfireThreshold = 60000 - -# set the redis password (optional, defaults null) -org.quartz.jobStore.password = - -# set the redis port (optional, defaults to 6379) -org.quartz.jobStore.port = - -# enable Redis clustering (optional, defaults to false) -org.quartz.jobStore.redisCluster = - -# enable Redis sentinel (optional, defaults to false) -org.quartz.jobStore.redisSentinel = - -# set the sentinel master group name (required if redisSentinel = true) -org.quartz.jobStore.masterGroupName = - -# set the redis database (optional, defaults to 0) -org.quartz.jobStore.database: - -# set the Redis key prefix for all JobStore Redis keys (optional, defaults to none) -org.quartz.jobStore.keyPrefix = a_prefix_ - -# set the Redis lock timeout in milliseconds (optional, defaults to 30000) -org.quartz.jobStore.lockTimeout = 30000 - -# enable SSL (defaults to false) -org.quartz.jobStore.ssl = -``` - -## Limitations -All GroupMatcher comparators have been implemented. -Aside from that, the same limitations outlined in [redis-quartz's readme](https://github.com/RedisLabs/redis-quartz#limitations) apply. +This is a fork of [jlinn's quartz-redis-jobstore](https://github.com/jlinn/quartz-redis-jobstore).