forked from square/okhttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
40 lines (40 loc) · 1.12 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":dependencyDashboard",
"schedule:weekly"
],
"labels": ["renovate"],
"ignoreDeps": [
"com.squareup.okhttp3:okhttp",
"com.squareup.okhttp3:okhttp-tls",
"com.squareup.okhttp3:mockwebserver"
],
"packageRules": [
{
"matchPackageNames": ["org.objenesis:objenesis"],
"allowedVersions": "<=2.6"
},
{
"matchPackageNames": ["org.eclipse.jetty:jetty-client"],
"allowedVersions": "<10.0",
"description": "JDK 11 requirement"
},
{
"matchPackageNames": ["org.junit-pioneer:junit-pioneer"],
"allowedVersions": "<2.0.0",
"description": "JDK 11 requirement"
},
{
"matchPackageNames": ["gradle"],
"allowedVersions": "<8.0",
"description": "Recent release, not compatible with pinned AGP and Kotlin versions yet. Wait for AGP 8?"
},
{
"matchPackageNames": ["com.android.tools.build:gradle"],
"allowedVersions": "<7.4",
"description": "Recent release, no compatible Intellij stable release (2023.1)"
}
]
}