-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathrenovate.json
More file actions
56 lines (56 loc) · 1.68 KB
/
renovate.json
File metadata and controls
56 lines (56 loc) · 1.68 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
54
55
56
{
"commitMessagePrefix": "FINERACT-2421: ",
"extends": [
"config:base",
"group:allNonMajor",
"schedule:weekly",
"helpers:pinGitHubActionDigests"
],
"ignorePaths": [
"docs/**",
"fineract-client/**"
],
"ignoreDeps": [
"com.gradle.develocity"
],
"labels": ["renovate"],
"packageRules": [{
"description": "Limit the aws sdk to monthly updates because otherwise it PRs every day",
"packageNames": ["com.amazonaws:*"],
"schedule": ["monthly"]
},
{
"matchPackageNames": ["org.glassfish.jaxb:jaxb-runtime"],
"allowedVersions": "<=2.3.6"
},
{
"matchPackageNames": ["com.sun.mail:jakarta.mail", "com.icegreen:greenmail-junit5"],
"allowedVersions": "<=2.0.1"
},
{
"matchPackageNames": ["io.swagger.core.v3.swagger-gradle-plugin"],
"allowedVersions": "<=2.2.25"
},
{
"matchPackageNames": ["org.openapi.generator"],
"allowedVersions": "<=7.8.0"
},
{
"matchPackageNames": ["org.liquibase:liquibase-core", "org.liquibase.ext:liquibase-postgresql"],
"allowedVersions": "<=4.33.0",
"description": "Liquibase 5.0.0 was changing licence from Apache License Version 2.0 to FSL-1.1-ALv2 which is incompatible with Apache License 2.0: https://issues.apache.org/jira/browse/LEGAL-721"
},
{
"depTypeList": ["dependencies"],
"updateTypes": ["patch", "minor"],
"groupName": "non-major"
}],
"regexManagers": [
{
"fileMatch": ["^build\\.gradle$"],
"matchStrings": ["[\\s\\n{](mavenBom)\\s*['\"](?<depName>[a-zA-Z][-_a-zA-Z0-9.]*?:[a-zA-Z][-_a-zA-Z0-9.]*?):(?<currentValue>[a-zA-Z0-9][-.a-zA-Z0-9]*?)['\"]"],
"datasourceTemplate": "maven",
"versioningTemplate": "gradle"
}
]
}