Skip to content
Open
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
32 changes: 18 additions & 14 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
"extends": [
"config:recommended"
],
"ignorePaths": ["example/frontend/**", "example/iiif-prezi/**"],
"ignorePaths": [
"example/frontend/**",
"example/iiif-prezi/**"
],
"groupName": "all dependencies",
"groupSlug": "all",
"lockFileMaintenance": {
Expand All @@ -18,23 +21,24 @@
]
},
{
// Solr is checked for daily, we want to track upstream versions very closely
"matchPackagePrefixes": ["org.apache.solr"],
"extends": ["schedule:daily"]
"extends": [
"schedule:daily"
],
"matchPackageNames": [
"org.apache.solr{/,}**"
]
},
{
// 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
"enabled": false,
"matchPackageNames": [
"org.apache.lucene{/,}**"
]
},
{
// 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
"enabled": false,
"matchPackageNames": [
"com.fasterxml.woodstox{/,}**"
]
}
],
"schedule": [
Expand Down