Skip to content

Commit 7de4f12

Browse files
committed
Add ivy support via customManagers for renovate
1 parent 66b4d99 commit 7de4f12

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

.github/renovate.json5

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
{
2-
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"config:base"
5-
]
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:base"
5+
],
6+
"customManagers": [
7+
{
8+
"customType": "regex",
9+
"managerFilePatterns": [
10+
"ivy.xml"
11+
],
12+
"matchStrings": [
13+
"<dependency\\s+org=\"(?<packageName>[^\"]+?)\"\\s+name=\"(?<depName>[^\"]+?)\"\\s+rev=\"(?<currentValue>[^\"]+?)\"[^/>]*/>"
14+
],
15+
"datasourceTemplate": "maven"
16+
}
17+
]
618
}

0 commit comments

Comments
 (0)