mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
fix: consider child pom.xml files for the mavenPropertyVersions custom manager (#24691)
This commit is contained in:
parent
3ec91b2808
commit
a96fa6e7ec
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ export const presets: Record<string, Preset> = {
|
||||||
customType: 'regex',
|
customType: 'regex',
|
||||||
datasourceTemplate:
|
datasourceTemplate:
|
||||||
'{{#if datasource}}{{{datasource}}}{{else}}maven{{/if}}',
|
'{{#if datasource}}{{{datasource}}}{{else}}maven{{/if}}',
|
||||||
fileMatch: ['^pom\\.xml$'],
|
fileMatch: ['(^|/)pom\\.xml$'],
|
||||||
matchStrings: [
|
matchStrings: [
|
||||||
'<!--\\s?renovate:( datasource=(?<datasource>[a-z-.]+?))? depName=(?<depName>[^\\s]+?)(?: packageName=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[a-z-0-9]+?))?\\s+-->\\s+<.+\\.version>(?<currentValue>.+)<\\/.+\\.version>',
|
'<!--\\s?renovate:( datasource=(?<datasource>[a-z-.]+?))? depName=(?<depName>[^\\s]+?)(?: packageName=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[a-z-0-9]+?))?\\s+-->\\s+<.+\\.version>(?<currentValue>.+)<\\/.+\\.version>',
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue