Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 28 additions & 23 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -1,42 +1,47 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
"config:recommended",
":dependencyDashboard",
"group:all",
"schedule:weekly"
'config:recommended',
':dependencyDashboard',
'group:all',
'schedule:weekly',
],
customManagers: [
{
description: "Maven dependencies managed by rules_jvm_external",
customType: "regex",
fileMatch: [
"^MODULE.bazel$"
description: 'Maven dependencies managed by rules_jvm_external',
customType: 'regex',
managerFilePatterns: [
'/^MODULE.bazel$/',
],
matchStringsStrategy: "recursive",
matchStringsStrategy: 'recursive',
matchStrings: [
// First narrow down the search to those dependencies in a Starlark list annotated with
// a special comment.
"# renovate: keep updated[^\\]]*]",
'# renovate: keep updated[^\\]]*]',
// Match all lines of the form:
// "com.google.guava:guava:jar:28.2-jre",
"\\n\\s*\"(?<depName>[^:]+:[^:]+):(?:jar:)?(?<currentValue>\\d[^\"]*)\","
'\\n\\s*"(?<depName>[^:]+:[^:]+):(?:jar:)?(?<currentValue>\\d[^"]*)",',
],
datasourceTemplate: "maven"
}
datasourceTemplate: 'maven',
},
],
packageRules: [
{
// Assign regex matches to a separate group since these PRs require manual lockfile updates.
matchManagers: ["regex"],
groupName: "Maven deps",
groupSlug: "maven",
matchManagers: [
'custom.regex',
],
groupName: 'Maven deps',
groupSlug: 'maven',
},
{
// System scoped Maven dependencies are build locally.
matchDepTypes: ["system"],
matchManagers: ["maven"],
enabled: false
}
]
matchDepTypes: [
'system',
],
matchManagers: [
'maven',
],
enabled: false,
},
],
}