-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
renovate.json
167 lines (167 loc) · 4.44 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"extends": [
"config:base",
":semanticCommits",
":semanticCommitTypeAll(chore)"
],
"ignorePaths": [
"**/devtools/analysis/**",
"**/devtools/log2test/**",
"**/analyzer/src/it/**"
],
"packageRules": [
{
"description": "Disable special versions",
"matchPackagePatterns": ["*"],
"allowedVersions": "!/^(?i).*[-_\\.](Alpha|Beta|RC|M|EA|Snap|snapshot|jboss|atlassian)[-_\\.]?[0-9]?.*$/"
},
{
"description": "Disable major updates for slf4j 1.x (Needed for backwards compatibility testing)",
"matchPackagePrefixes": ["org.slf4j"],
"matchCurrentVersion": "[1.0.0,2.0.0)",
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Disable major updates for kryo 4.x (Needed for backwards compatibility testing)",
"matchPackageNames": ["com.esotericsoftware:kryo"],
"matchCurrentVersion": "[4.0.0,5.0.0)",
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Disable major updates for Elastic Search 7.x (Needed for backwards compatibility testing)",
"matchPackagePrefixes": ["org.elasticsearch"],
"matchCurrentVersion": "[7.0.0,8.0.0)",
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Do not change the jackson version needed for Apache Drill",
"matchPackagePrefixes": ["com.fasterxml.jackson.core"],
"matchCurrentVersion": "[2.14.2]",
"matchUpdateTypes": ["major", "minor", "patch"],
"enabled": false
},
{
"description": "Disable strange versions of graphql-java",
"matchPackageNames": ["com.graphql-java:graphql-java"],
"allowedVersions": "/^[0-9]{1,3}\\.[0-9]{1,3}(?:\\.[0-9]{1,3})?$/"
},
{
"matchPackagePrefixes": [
"org.apache.logging",
"org.slf4j"
],
"groupSlug": "logging",
"groupName": "logging",
"labels": [
"logging"
]
},
{
"matchPackagePrefixes": [
"com.fasterxml.jackson"
],
"groupSlug": "jackson",
"groupName": "jackson",
"labels": [
"jackson"
]
},
{
"matchPackagePrefixes": [
"org.apache.maven.plugins",
"org.codehaus.mojo",
"org.sonarsource.scanner.maven",
"com.github.spotbugs",
"com.google.code.maven-replacer-plugin",
"io.fabric8",
"pl.project13.maven",
"com.alexecollins.maven.plugin",
"org.jetbrains.kotlin",
"net.alchim31.maven"
],
"groupSlug": "maven_build_plugins",
"groupName": "maven build plugins",
"labels": [
"maven-build-plugins"
]
},
{
"matchPackagePrefixes": [
"com.google"
],
"groupSlug": "google",
"groupName": "google",
"labels": [
"google"
]
},
{
"description": "Disallow Cloudera/Hortonworks/Spring/... internal versions",
"matchPackagePrefixes": ["org.apache."],
"allowedVersions": "/^[0-9]{1,3}\\.[0-9]{1,3}(?:\\.[0-9]{1,3})?(?:-M[0-9]{1,3})?$/"
},
{
"description": "Disable broken maven-artifact-plugin version",
"matchDepNames": ["org.apache.maven.plugins:maven-artifact-plugin"],
"allowedVersions": "!/^3\\.5\\.0$/"
},
{
"matchPackagePrefixes": [
"commons-",
"org.apache.commons"
],
"groupSlug": "commons",
"groupName": "Apache Commons",
"labels": [
"apache-commons"
],
"allowedVersions": "/^[0-9]{1,3}\\.[0-9]{1,3}(?:\\.[0-9]{1,3})?(?:-M[0-9]{1,3})?$/"
},
{
"matchPackagePrefixes": [
"org.springframework",
"io.springfox",
"org.springdoc"
],
"groupSlug": "spring",
"groupName": "Spring Framework",
"labels": [
"spring"
]
},
{
"matchPackagePrefixes": [
"io.quarkus"
],
"groupSlug": "quarkus",
"groupName": "Quarkus",
"labels": [
"quarkus"
]
},
{
"matchPackagePrefixes": [
"org.junit",
"org.scalatest",
"org.hamcrest",
"org.owasp",
"org.pitest",
"org.jacoco",
"org.sonarsource",
"com.github.spotbugs",
"org.eluder.coveralls",
"org.apache.rat",
"net.sourceforge.cobertura",
"com.puppycrawl.tools"
],
"groupSlug": "testing",
"groupName": "Testing and Code Quality",
"labels": [
"testing"
]
}
]
}