Skip to content
Snippets Groups Projects
Unverified Commit 91bc90c7 authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

feat(maven): workaround for spring cloud numeric versions (#7818)

parent 81bd4f92
No related branches found
No related tags found
No related merge requests found
......@@ -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]/',
},
],
},
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment