-
-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathrenovate.json5
More file actions
53 lines (53 loc) · 1.18 KB
/
Copy pathrenovate.json5
File metadata and controls
53 lines (53 loc) · 1.18 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"enabled": true,
"prConcurrentLimit": 3,
"prHourlyLimit": 1,
extends: [
'config:best-practices',
'group:monorepos',
],
packageRules: [
{
description: 'Qute 2.0 requires Java 17',
matchPackageNames: [
'io.quarkus.qute:qute-core',
],
allowedVersions: '<2.0.0',
},
{
description: 'Wiremock >3 requires Java 11',
matchPackageNames: [
'com.github.tomakehurst:wiremock',
],
allowedVersions: '<3.0.0',
},
{
description: 'Group eu.maveniverse.maven.mima dependencies for bulk updates',
groupName: 'eu.maveniverse.maven.mima dependencies',
groupSlug: 'eu-maveniverse-maven-mima',
matchPackageNames: [
'/^eu\\.maveniverse\\.maven\\.mima/',
],
},
{
description: 'Lets not update to Maven 4 by default yet',
matchManagers: [
'maven-wrapper',
],
matchUpdateTypes: [
'major',
],
enabled: false,
},
{
description: 'Lets not update to Gradle 9 by default yet',
matchManagers: [
'gradle-wrapper',
],
matchUpdateTypes: [
'major',
],
enabled: false,
},
],
}