-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathrenovate.json5
44 lines (44 loc) · 1.28 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
43
44
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"ignorePaths": ["example/frontend/**", "example/iiif-prezi/**"],
"groupName": "all dependencies",
"groupSlug": "all",
"lockFileMaintenance": {
"enabled": false
},
"packageRules": [
{
"groupName": "all dependencies",
"groupSlug": "all",
"matchPackageNames": [
"*"
]
},
{
// Solr is checked for daily, we want to track upstream versions very closely
"matchPackagePrefixes": ["org.apache.solr"],
"extends": ["schedule:daily"]
},
{
// Our Lucene version should track the one used by the currently used solr-core
// version. Unfortunately this can't be done automatically by renovate, so we
// have to exclude these dependencies from the renovate process and maintain them
// manually to be in sync with Solr
"matchPackagePrefixes": ["org.apache.lucene"],
"enabled": false
},
{
// Same thing as for Lucene, woodstox version should track the one used by solr
// and needs to be manually kept in sync
"matchPackagePrefixes": ["com.fasterxml.woodstox"],
"enabled": false
}
],
"schedule": [
"every weekend"
],
"separateMajorMinor": false
}