mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
feat(maven): workaround for spring cloud numeric versions (#7818)
This commit is contained in:
parent
81bd4f92be
commit
91bc90c795
1 changed files with 11 additions and 0 deletions
|
@ -8,6 +8,7 @@ export const presets: Record<string, Preset> = {
|
|||
extends: [
|
||||
'workarounds:unstableV2SetupNodeActions',
|
||||
'workarounds:mavenCommonsCliAncientVersion',
|
||||
'workarounds:ignoreSpringCloudNumeric',
|
||||
],
|
||||
},
|
||||
unstableV2SetupNodeActions: {
|
||||
|
@ -29,4 +30,14 @@ export const presets: Record<string, Preset> = {
|
|||
},
|
||||
],
|
||||
},
|
||||
ignoreSpringCloudNumeric: {
|
||||
description: 'Ignore spring cloud 1.x releases',
|
||||
packageRules: [
|
||||
{
|
||||
datasources: ['maven'],
|
||||
packageNames: ['org.springframework.cloud:spring-cloud-starter-parent'],
|
||||
allowedVersions: '/^[A-Z]/',
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue