diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 27bdbc3..c6dee7f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,3 +8,7 @@ updates: directory: "/" # Location of package manifests schedule: interval: "weekly" + groups: + jackson: + patterns: + - com.fasterxml.jackson.* diff --git a/README.md b/README.md index c886929..7378336 100644 --- a/README.md +++ b/README.md @@ -169,9 +169,9 @@ The result of the evaluation is an `EvaluationResult` that indicates if and why | greater than | `gt` | comparison | Valid if `field` > `value`. | | greater or equal | `ge` | comparison | Valid if `field` >= `value`. | | in | `in` | comparison | Valid if `field` is in `value`. | -| nin | `nin` | comparison | Valid if `field` is not in `value`. | +| not in | `nin` | comparison | Valid if `field` is not in `value`. | | contains | `ct` | comparison | Valid if `field` contains `value`. | -| nct | `nct` | comparison | Valid if `field` does not contain `value`. | +| not contains | `nct` | comparison | Valid if `field` does not contain `value`. | ## Contributing diff --git a/build.gradle b/build.gradle index aafd539..c41fa54 100644 --- a/build.gradle +++ b/build.gradle @@ -74,8 +74,8 @@ publishing { licenses { license { - name = 'MIT License' - url = 'https://opensource.org/licenses/MIT' + name = 'Apache-2.0' + url = 'https://www.apache.org/licenses/LICENSE-2.0' } } developers {