-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathrenovate.json
More file actions
71 lines (71 loc) · 3.13 KB
/
renovate.json
File metadata and controls
71 lines (71 loc) · 3.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"extends": [
"config:base",
":rebaseStalePrs",
":preserveSemverRanges"
],
"gradle": {
"enabled": true
},
"renovateFork": true,
"packageRules": [
{
"matchPackageNames": ["javax.portlet:portlet-api"],
"allowedVersions": "< 3.0",
"description": "uPortal runs JSR-286 (Portlet API 2.0). Portlet API 3.x (JSR-362) is a different container contract and is not supported."
},
{
"matchPackagePrefixes": [
"org.springframework:",
"org.springframework.data:",
"org.springframework.security:",
"org.springframework.security.oauth:"
],
"allowedVersions": "< 5.0",
"description": "Pinned to Spring Framework 4.3.x / Spring Security 4.2.x. Spring 5+ requires a coordinated migration; Spring 6+ additionally needs Jakarta EE + Java 17+."
},
{
"matchPackagePrefixes": ["org.hibernate:", "org.hibernate.orm:"],
"allowedVersions": "< 6.0",
"description": "Pinned to Hibernate 5.6.x. Hibernate 6+ (including the org.hibernate.orm groupId rename) requires Jakarta EE and Java 17+."
},
{
"matchPackageNames": [
"com.sun.xml.bind:jaxb-impl",
"jakarta.xml.bind:jakarta.xml.bind-api",
"org.glassfish.jaxb:jaxb-runtime"
],
"allowedVersions": "< 3.0",
"description": "The 2.x releases preserve the javax.xml.bind.* package namespace. 3+ moves to jakarta.xml.bind as part of Jakarta EE 9+, which this portlet is not migrating to yet."
},
{
"matchPackageNames": ["org.codehaus.plexus:plexus-archiver"],
"allowedVersions": "< 4.10.0",
"description": "plexus-archiver 4.10+ requires a newer commons-io (BoundedInputStream.builder()) than the one bundled with maven-war-plugin 3.4.0. Revisit once the fleet's parent bumps maven-war-plugin to 3.5.x+."
},
{
"matchPackageNames": [
"org.mockito:mockito-core",
"org.mockito:mockito-inline",
"org.mockito:mockito-junit-jupiter"
],
"allowedVersions": "< 5.0",
"description": "Mockito 5 uses the inline MockMaker by default; its bundled byte-buddy references ClassFileVersion.JAVA_V21, missing on the byte-buddy pulled transitively via Hibernate/Javassist. Stay on Mockito 4.x until byte-buddy can be reconciled."
},
{
"matchPackageNames": ["javax.servlet:javax.servlet-api"],
"allowedVersions": "< 5.0",
"description": "Servlet API 5+ is in the Jakarta EE namespace and incompatible with this portlet's javax.servlet imports. Runtime is Tomcat 8.5/9 (Servlet 3.1)."
},
{
"matchManagers": ["gradle-wrapper"],
"allowedVersions": "< 9.0",
"description": "Gradle 9 requires Java 17; this portlet builds on the fleet's Java 11 floor. Revisit when the fleet moves to Java 17 (gated on the Spring 6 / Jakarta EE migration)."
},
{
"matchPackageNames": ["com.jayway.jsonpath:json-path"],
"allowedVersions": "< 3.0",
"description": "json-path 3.x raised its build-time floor to Java 17 and only publishes Java 17+ class-file variants. This portlet builds on the fleet's Java 11 floor. Revisit when the fleet moves to Java 17."
}
]
}