-
Notifications
You must be signed in to change notification settings - Fork 141
/
renovate.json5
42 lines (42 loc) · 1.17 KB
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"config:recommended",
":dependencyDashboard",
"group:all",
"schedule:weekly"
],
customManagers: [
{
description: "Maven dependencies managed by rules_jvm_external",
customType: "regex",
fileMatch: [
"^MODULE.bazel$"
],
matchStringsStrategy: "recursive",
matchStrings: [
// First narrow down the search to those dependencies in a Starlark list annotated with
// a special comment.
"# renovate: keep updated[^\\]]*]",
// Match all lines of the form:
// "com.google.guava:guava:jar:28.2-jre",
"\\n\\s*\"(?<depName>[^:]+:[^:]+):(?:jar:)?(?<currentValue>\\d[^\"]*)\","
],
datasourceTemplate: "maven"
}
],
packageRules: [
{
// Assign regex matches to a separate group since these PRs require manual lockfile updates.
matchManagers: ["regex"],
groupName: "Maven deps",
groupSlug: "maven",
},
{
// System scoped Maven dependencies are build locally.
matchDepTypes: ["system"],
matchManagers: ["maven"],
enabled: false
}
]
}