-
Notifications
You must be signed in to change notification settings - Fork 57
/
renovate.json
121 lines (121 loc) · 3.49 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"baseBranches": [
"main"
],
"packageRules": [
{
"matchPackageNames": [
"org.jetbrains.kotlin:kotlin-gradle-plugin",
"org.jetbrains.kotlin:kotlin-android-extensions",
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin.android",
"org.jetbrains.kotlin.jvm"
],
"groupName": "kotlin",
"schedule": [
"on the first day of the month"
]
}, {
"matchPackageNames": [
"com.android.application",
"com.android.library",
"com.android.tools.build:gradle"
],
"groupName": "android",
"schedule": [
"on the first day of the month"
]
},
{
"matchPackageNames": [
"androidx.core:core-ktx",
"androidx.lifecycle:lifecycle-runtime-ktx",
"androidx.navigation:navigation-testing",
"androidx.lifecycle:lifecycle-viewmodel-ktx",
"androidx.core:core-ktx",
"androidx.appcompat:appcompat"
],
"groupName": "androidx",
"schedule": [
"on the first day of the month"
]
}, {
"matchPackageNames": [
"androidx.activity:activity-compose",
"androidx.compose:compose-bom",
"androidx.compose.foundation",
"androidx.compose.ui:ui-test-manifest",
"androidx.compose.ui:ui-util",
"androidx.compose.ui:ui-tooling",
"androidx.compose.ui:ui-tooling-preview",
"androidx.compose.ui:ui-test-junit4",
"androidx.compose.material",
"androidx.compose.material3",
"androidx.compose.material3:material3-window-size-class",
"androidx.compose.runtime:runtime",
"androidx.compose.runtime:runtime-livedata",
"androidx.navigation:navigation-compose",
"androidx.lifecycle:lifecycle-viewmodel-compose"
],
"groupName": "androidxCompose",
"schedule": [
"on the first day of the month"
]
},
{
"matchPackageNames": [
"org.jetbrains.kotlin:kotlin-test-common",
"com.android.test",
"androidx.test:runner",
"androidx.test:core",
"androidx.test:core-ktx",
"androidx.test.espresso:espresso-core",
"androidx.test.ext:junit",
"androidx.test.ext:junit-ktx",
"androidx.test:rules",
"androidx.test:monitor",
"io.mockk:mockk-android",
"androidx.annotation:annotation",
"org.junit.jupiter:junit-jupiter"
],
"groupName": "test",
"schedule": [
"on the first day of the month"
]
}, {
"matchPackageNames": [
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-coroutines-android",
"org.jetbrains.kotlinx:kotlinx-coroutines-test",
"app.cash.turbine:turbine",
"androidx.test:core-ktx"
],
"groupName": "coroutine",
"schedule": [
"on the first day of the month"
]
} ,{
"matchPackageNames": [
"org.jlleitschuh.gradle.ktlint",
"org.jetbrains.dokka",
"org.sonarqube",
"org.jetbrains.dokka:dokka-gradle-plugin",
"androidx.test:core-ktx"
],
"groupName": "others",
"schedule": [
"on the first day of the month"
]
}
],
"ignoreDeps": [
"org.jetbrains.kotlin:kotlin-gradle-plugin",
"androidx.annotation:annotation",
"androidx.test.core-ktx",
"androidx.test.core"
]
}