diff --git a/renovate.json b/renovate.json index 8eb2362..d9ea7e3 100644 --- a/renovate.json +++ b/renovate.json @@ -1,7 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base" + "config:recommended" ], "ignoreDeps": [ "quiet-fabric-loom", @@ -15,29 +15,44 @@ "packageRules": [ { "description": "Correct Guava version handling", - "matchPackagePrefixes": ["com.google.guava:"], - "versioning": "regex:^(?\\d+)(\\.(?\\d+))?(\\.(?\\d+))?(-(?.*))?$" + "versioning": "regex:^(?\\d+)(\\.(?\\d+))?(\\.(?\\d+))?(-(?.*))?$", + "matchPackageNames": [ + "com.google.guava:{/,}**" + ] }, { "description": "Correct Fabric API version handling", - "matchPackageNames": ["net.fabricmc.fabric-api:fabric-api", "net.fabricmc.fabric-api:fabric-api-deprecated"], + "matchPackageNames": [ + "net.fabricmc.fabric-api:fabric-api", + "net.fabricmc.fabric-api:fabric-api-deprecated" + ], "versioning": "regex:^(?\\d+)(\\.(?\\d+))?(\\.(?\\d+))?(?:\\+(?.*))?$" }, { "description": "Correct NeoForge version handling", - "matchPackageNames": ["net.neoforged:neoforge"], + "matchPackageNames": [ + "net.neoforged:neoforge" + ], "versioning": "regex:^(?(\\d+\\.){2})(?\\d+)(-beta)?$" }, { - "matchManagers": ["github-actions", "gradle-wrapper"], + "matchManagers": [ + "github-actions", + "gradle-wrapper" + ], "groupName": "gradle and github actions" }, { - "matchDepTypes": ["plugin"], + "matchDepTypes": [ + "plugin" + ], "groupName": "gradle and github actions" }, { - "matchPaths": ["build-logic/*", "buildSrc/*"], + "matchFileNames": [ + "build-logic/*", + "buildSrc/*" + ], "groupName": "gradle and github actions" } ],