forked from graphql-java-kickstart/graphql-java-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
35 lines (35 loc) · 780 Bytes
/
renovate.json
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
{
"extends": [
"github>graphql-java-kickstart/renovate-config"
],
"packageRules": [
{
"description": "Group Kotlin updates together",
"groupName": "kotlin",
"matchPackagePrefixes": [
"org.jetbrains.kotlin"
]
},
{
"description": "Align antlr version with graphql-java",
"matchPackagePrefixes": [
"org.antlr"
],
"allowedVersions": "<=4.11.1"
},
{
"description": "Logback 1.4 requires Java 11",
"matchPackagePrefixes": [
"ch.qos.logback"
],
"allowedVersions": "!/1\\.4\\..*$/"
},
{
"description": "Spring 6 requires Java 17",
"matchPackagePatterns": [
"org.springframework"
],
"allowedVersions": "<6.0.0"
}
]
}