Skip to content

Commit 24e85c8

Browse files
committed
support jakarta from 5.0 to 6.x
1 parent 2fb0467 commit 24e85c8

File tree

6 files changed

+41
-5
lines changed

6 files changed

+41
-5
lines changed

commons/auth-filters/authn-filter/jaspi-modules/jwt-session-module/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@
3737
<groupId>org.apache.felix</groupId>
3838
<artifactId>maven-bundle-plugin</artifactId>
3939
<extensions>true</extensions>
40+
<configuration>
41+
<instructions>
42+
<Import-Package>
43+
jakarta.servlet.http;version="[5.0,7)",
44+
*
45+
</Import-Package>
46+
</instructions>
47+
</configuration>
4048
</plugin>
4149
</plugins>
4250
</build>

commons/auth-filters/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* information: "Portions copyright [year] [name of copyright owner]".
1414
*
1515
* Copyright 2013-2016 ForgeRock AS.
16-
* Portions copyright 2024 3A Systems LLC.
16+
* Portions copyright 2024-2025 3A Systems LLC.
1717
-->
1818
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1919
<modelVersion>4.0.0</modelVersion>
@@ -50,7 +50,7 @@
5050
<plugin>
5151
<groupId>org.apache.felix</groupId>
5252
<artifactId>maven-bundle-plugin</artifactId>
53-
<version>3.5.1</version>
53+
<version>5.1.9</version>
5454
</plugin>
5555
<plugin>
5656
<groupId>org.codehaus.mojo</groupId>

commons/http-framework/servlet/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,22 @@
7575
<scope>test</scope>
7676
</dependency>
7777
</dependencies>
78+
<build>
79+
<plugins>
80+
<plugin>
81+
<groupId>org.apache.felix</groupId>
82+
<artifactId>maven-bundle-plugin</artifactId>
83+
<extensions>true</extensions>
84+
<configuration>
85+
<instructions>
86+
<Import-Package>
87+
jakarta.servlet;version="[5.0,7)",
88+
jakarta.servlet.http;version="[5.0,7)",
89+
*
90+
</Import-Package>
91+
</instructions>
92+
</configuration>
93+
</plugin>
94+
</plugins>
95+
</build>
7896
</project>

commons/util/util/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
~ information: "Portions copyright [year] [name of copyright owner]".
1313
~
1414
~ Copyright 2015 ForgeRock AS.
15+
~ Portions copyright 2025 3A Systems LLC.
1516
-->
1617
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1718
<modelVersion>4.0.0</modelVersion>
@@ -78,6 +79,14 @@
7879
<groupId>org.apache.felix</groupId>
7980
<artifactId>maven-bundle-plugin</artifactId>
8081
<extensions>true</extensions>
82+
<configuration>
83+
<instructions>
84+
<Import-Package>
85+
org.apache.xerces.util;resolution:=optional,
86+
*
87+
</Import-Package>
88+
</instructions>
89+
</configuration>
8190
</plugin>
8291
<plugin>
8392
<groupId>org.apache.maven.plugins</groupId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@
955955
<plugin>
956956
<groupId>org.apache.felix</groupId>
957957
<artifactId>maven-bundle-plugin</artifactId>
958-
<version>3.5.1</version>
958+
<version>5.1.9</version>
959959
<configuration>
960960
<instructions>
961961
<Implementation-Build>${ci.build.number}</Implementation-Build>

script/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
~ with the fields enclosed by brackets [] replaced by
2222
~ your own identifying information:
2323
~ "Portions Copyrighted [year] [name of copyright owner]"
24-
Portions Copyrighted 2018-2024 3A Systems, LLC
24+
~
25+
~ Portions Copyrighted 2018-2025 3A Systems, LLC
2526
-->
2627
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2728
<modelVersion>4.0.0</modelVersion>
@@ -97,7 +98,7 @@
9798
<plugin>
9899
<groupId>org.apache.felix</groupId>
99100
<artifactId>maven-bundle-plugin</artifactId>
100-
<version>2.4.0</version>
101+
<version>5.1.9</version>
101102
<configuration>
102103
<instructions>
103104
<Import-Package>${commons.script.osgi.import}</Import-Package>

0 commit comments

Comments
 (0)