-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathrenovate.json
More file actions
45 lines (45 loc) · 2.04 KB
/
Copy pathrenovate.json
File metadata and controls
45 lines (45 loc) · 2.04 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
{
"extends": [
"config:base"
],
"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."
},
{
"matchPackageNames": [
"javax.servlet:servlet-api"
],
"allowedVersions": "< 3.0",
"description": "This portlet compiles against the legacy javax.servlet:servlet-api:2.5 artifact. Servlet 3.x moved to javax.servlet:javax.servlet-api (different artifactId); staying on 2.5 preserves the API surface this portlet's source was written for. The runtime still provides Servlet 3.1 via tomcat-servlet-api (managed by uportal-portlet-parent)."
},
{
"matchPackagePrefixes": [
"org.springframework:",
"org.springframework.data:"
],
"allowedVersions": "< 5.0",
"description": "This portlet is pinned to Spring Framework 4.3.x. Spring 5+ requires a coordinated migration; Spring 6+ additionally needs Jakarta EE + Java 17+."
},
{
"matchPackageNames": [
"org.codehaus.plexus:plexus-archiver"
],
"allowedVersions": "< 4.11.0",
"description": "plexus-archiver 4.11+ requires a newer commons-io (BoundedInputStream.builder()) than the one bundled with maven-war-plugin 3.4.0 (pinned by uportal-portlet-parent). Revisit once the 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 defaults to the inline MockMaker and ships a newer byte-buddy that references ClassFileVersion.JAVA_V21 — incompatible with the byte-buddy pulled transitively via Javassist on this portlet's classpath (NoSuchFieldError at MockMaker init). Stay on Mockito 4.x until the fleet is ready to reconcile byte-buddy at the parent level."
}
]
}