-
Notifications
You must be signed in to change notification settings - Fork 57
/
renovate.json5
27 lines (27 loc) · 991 Bytes
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":prHourlyLimitNone",
":prImmediately",
":semanticCommitTypeAll(build)",
":separateMajorReleases"
],
"rangeStrategy": "bump",
"packageRules": [
{
// Flying Saucer requires Java 11 in 9.5.0, and Java 17 in 9.6.0 (https://github.com/flyingsaucerproject/flyingsaucer?tab=readme-ov-file#getting-flying-saucer),
// so these changes are pending that, since we're still targeting Java 8.
"matchPackageNames": ["org.xhtmlrenderer:flying-saucer-core"],
"allowedVersions": "<9.5.0",
},
{
"matchPackageNames": ["com.akathist.maven.plugins.launch4j:launch4j-maven-plugin"],
"changelogUrl": "https://github.com/orphan-oss/launch4j-maven-plugin/releases"
},
{
"matchPackageNames": ["commons-io:commons-io"],
"changelogUrl": "https://commons.apache.org/proper/commons-io/changes-report.html"
}
]
}